Skip to content

Commit

Permalink
Merge pull request #186 from glific/fix/forms
Browse files Browse the repository at this point in the history
Fix/forms
  • Loading branch information
akanshaaa19 authored Sep 12, 2024
2 parents 63b6828 + 42b127d commit b1fc6e4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cypress/e2e/flow/Flow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ describe('Flow', () => {
cy.wait(1000);
cy.get('[data-testid=submitActionButton]').click({ force: true });
cy.get('p').should('contain', 'Name is required.');
cy.get('[data-testid=outlinedInput]').eq(0).click().wait(500).type('Test flow');
cy.get('[data-testid=submitActionButton]').click({ force: true });
cy.get('div').should('contain', 'Flow created successfully!');
cy.deleteFlow('Test flow');
});

it('should create new Flow with keyword', () => {
Expand Down

0 comments on commit b1fc6e4

Please sign in to comment.