mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
21 lines
612 B
TypeScript
21 lines
612 B
TypeScript
import { WorkflowPage, NDV } from '../pages';
|
|
|
|
const workflowPage = new WorkflowPage();
|
|
const ndv = new NDV();
|
|
|
|
// Migrated to Playwright
|
|
// eslint-disable-next-line n8n-local-rules/no-skipped-tests
|
|
describe.skip('Schedule Trigger node', () => {
|
|
beforeEach(() => {
|
|
workflowPage.actions.visit();
|
|
});
|
|
|
|
it('should execute and return the execution timestamp', () => {
|
|
workflowPage.actions.addInitialNodeToCanvas('Schedule Trigger');
|
|
workflowPage.actions.openNode('Schedule Trigger');
|
|
ndv.actions.execute();
|
|
ndv.getters.outputPanel().contains('timestamp');
|
|
ndv.getters.backToCanvas().click();
|
|
});
|
|
});
|