Files
Agent-n8n/n8n-n8n-1.109.2/cypress/e2e/15-scheduler-node.cy.ts
2025-09-08 04:48:28 +08:00

21 lines
612 B
TypeScript
Executable File

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();
});
});