mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
22 lines
728 B
TypeScript
22 lines
728 B
TypeScript
import { WEBHOOK_NODE_NAME } from '../constants';
|
|
import { NDV, WorkflowPage } from '../pages';
|
|
|
|
const workflowPage = new WorkflowPage();
|
|
const ndv = new NDV();
|
|
|
|
describe('ADO-2270 Save button resets on webhook node open', () => {
|
|
it('should not reset the save button if webhook node is opened and closed', () => {
|
|
workflowPage.actions.visit();
|
|
workflowPage.actions.addInitialNodeToCanvas(WEBHOOK_NODE_NAME);
|
|
workflowPage.getters.saveButton().click();
|
|
workflowPage.actions.openNode(WEBHOOK_NODE_NAME);
|
|
|
|
ndv.actions.close();
|
|
|
|
cy.ifCanvasVersion(
|
|
() => cy.getByTestId('workflow-save-button').should('not.contain', 'Saved'),
|
|
() => cy.getByTestId('workflow-save-button').should('contain', 'Saved'),
|
|
);
|
|
});
|
|
});
|