ci: Reset DB only once per e2e test (no-changelog) (#6216)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-05-26 15:15:06 +00:00
committed by GitHub
parent b777f9031d
commit 7a7b884793
31 changed files with 50 additions and 65 deletions

View File

@@ -6,11 +6,14 @@ const workflowPage = new WorkflowPageClass();
const ndv = new NDV();
describe('Execution', () => {
beforeEach(() => {
cy.resetAll();
before(() => {
cy.skipSetup();
});
beforeEach(() => {
workflowPage.actions.visit();
});
it('should test manual workflow', () => {
cy.createFixtureWorkflow('Manual_wait_set.json', `Manual wait set ${uuid()}`);
@@ -264,7 +267,6 @@ describe('Execution', () => {
.canvasNodeByName('Set')
.within(() => cy.get('.fa-check').should('not.exist'));
// Check canvas nodes after workflow stopped
workflowPage.getters
.canvasNodeByName('Webhook')