Skip to content

Commit

Permalink
test: fix feature e2e test by checking flag name in a td instead of url
Browse files Browse the repository at this point in the history
  • Loading branch information
nunogois committed Nov 26, 2024
1 parent ff164a0 commit af21ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/cypress/integration/feature/feature.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('feature', () => {

it('can create a feature flag', () => {
cy.createFeature_UI(featureToggleName, true, projectName);
cy.url().should('include', featureToggleName);
cy.contains('td', featureToggleName).should('exist');
});

it('gives an error if a toggle exists with the same name', () => {
Expand Down

0 comments on commit af21ddc

Please sign in to comment.