test: Migrate 1183-ado from Cypress to Playwright (#18455)

This commit is contained in:
shortstacked
2025-08-20 14:44:04 +01:00
committed by GitHub
parent a5c6e2fecf
commit cf76165457
5 changed files with 628 additions and 657 deletions

View File

@@ -0,0 +1,24 @@
import { test, expect } from '../../fixtures/base';
import type { TestRequirements } from '../../Types';
const requirements: TestRequirements = {
workflow: {
'Test_ado_1338.json': 'Test Workflow ADO-1338',
},
};
test.describe('ADO-1338-ndv-missing-input-panel', () => {
test('should show the input and output panels when node is missing input and output data', async ({
n8n,
setupRequirements,
}) => {
await setupRequirements(requirements);
await n8n.workflowComposer.executeWorkflowAndWaitForNotification(
'Workflow successfully executed',
);
await n8n.canvas.openNode('Discourse1');
await expect(n8n.ndv.getInputPanel()).toBeVisible();
await expect(n8n.ndv.getOutputPanel()).toBeVisible();
});
});