Skip to content

Commit

Permalink
fix: just use url not with method
Browse files Browse the repository at this point in the history
  • Loading branch information
raikasdev committed Jul 7, 2022
1 parent 62a975d commit 1cb9640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/cypress/tests/notifications-editor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ describe('Notifications Creator', function () {
cy.get('#codeEditor').type('Hello world code {{name}} <div>Test', { parseSpecialCharSequences: false });
cy.getByTestId('submit-btn').click();
cy.wait(1000);
cy.intercept('GET', '/v1/notification-templates').as('notification-templates');
cy.intercept('/v1/notification-templates').as('notification-templates');
cy.getByTestId('trigger-snippet-btn').click();

cy.wait('@notification-templates', { timeout: 60000 });
Expand Down

0 comments on commit 1cb9640

Please sign in to comment.