mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-30 13:51:21 -08:00
647fc6c555
Github issue / Community forum post (link here to close automatically):
27 lines
875 B
TypeScript
27 lines
875 B
TypeScript
import { WorkflowPage, NDV } from '../pages';
|
|
|
|
const workflowPage = new WorkflowPage();
|
|
const ndv = new NDV();
|
|
|
|
describe('SQL editors', () => {
|
|
beforeEach(() => {
|
|
workflowPage.actions.visit();
|
|
});
|
|
|
|
it('should preserve changes when opening-closing Postgres node', () => {
|
|
workflowPage.actions.addInitialNodeToCanvas('Manual');
|
|
workflowPage.actions.addNodeToCanvas('Postgres');
|
|
workflowPage.actions.openNode('Postgres');
|
|
ndv.getters.parameterInput('operation').click();
|
|
cy.get('div').contains('Execute Query').click();
|
|
cy.get('div.cm-activeLine').type('SELECT * FROM `testTable`');
|
|
ndv.actions.close();
|
|
workflowPage.actions.openNode('Postgres');
|
|
cy.get('div.cm-activeLine').type('{end} LIMIT 10');
|
|
ndv.actions.close();
|
|
workflowPage.actions.openNode('Postgres');
|
|
|
|
cy.get('div.cm-activeLine').contains('SELECT * FROM `testTable` LIMIT 10');
|
|
});
|
|
});
|