Skip to content

Commit

Permalink
fix: remove .only from tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed Nov 2, 2023
1 parent d5eb9dc commit f2797ba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/27-opt-in-trial-banner.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('BannerStack', { disableAutoLogin: true }, () => {
planData.expirationDate = fiveDaysFromNow.toJSON();
});

it.only('should render trial banner for opt-in cloud user', () => {
it('should render trial banner for opt-in cloud user', () => {
cy.intercept('GET', '/rest/admin/cloud-plan', {
body: planData,
}).as('getPlanData');
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/7-workflow-actions.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ describe('Workflow Actions', () => {
.should('eq', NEW_WORKFLOW_NAME);
});

it.only('should not save workflow if canvas is loading', () => {
it('should not save workflow if canvas is loading', () => {
let interceptCalledCount = 0;

// There's no way in Cypress to check if intercept was not called
Expand Down

0 comments on commit f2797ba

Please sign in to comment.