mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
test: Migrate 1183-ado from Cypress to Playwright (#18455)
This commit is contained in:
@@ -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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user