mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 00:18:27 +00:00
Fix flaky E2E test (#1604)
Due to https://github.com/cypress-io/cypress/issues/7306, we need to use `force: true` in many places to avoid flakiness in Cypress tests.
This commit is contained in:
parent
4eee9af856
commit
1b393a7cf1
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ describe("Core tier - Admin user", () => {
|
|||
});
|
||||
|
||||
cy.contains("a", /back to queries/i).click({ force: true });
|
||||
cy.findByText(/cypress test query/i).click();
|
||||
cy.findByText(/cypress test query/i).click({ force: true });
|
||||
cy.findByText(/edit & run query/i).should("exist");
|
||||
|
||||
// On the Packs pages (manage, new, and edit), they should…
|
||||
|
|
|
|||
Loading…
Reference in a new issue