fleet/cypress/integration/premium
Zach Wasserman 1e87caa1aa
Improve Cypress E2E testing stability (#2117)
- Slight redesigns in some tests.
- Enable default retry in run mode.
- Disable flaky team flow test.
2021-09-17 10:04:51 -07:00
..
admin.spec.ts 1497 improved query experience (#1998) 2021-09-10 12:06:37 -07:00
maintainer.spec.ts 1497 improved query experience (#1998) 2021-09-10 12:06:37 -07:00
observer.spec.ts Manage Host Page > Add New Host Modal: Add copy to run command (#2048) 2021-09-14 15:25:34 -04:00
README.md Rename core->free and basic->premium (#1870) 2021-09-03 13:05:23 -03:00
team_maintainer_observer.spec.ts 1497 improved query experience (#1998) 2021-09-10 12:06:37 -07:00
teamflow.spec.ts Improve Cypress E2E testing stability (#2117) 2021-09-17 10:04:51 -07:00

Premium tier tests

These tests should only run when the server is in premium tier.

To enable the tests:

export CYPRESS_FLEET_TIER=premium

Before running the appropriate yarn cypress (open|run) command.

Filtering

Any test suite in this directory should use the following pattern for filtering:

FIXME: There must be a better way to do this for all tests in the directory rather than having to add the check in each file?

if (Cypress.env("FLEET_TIER") === "premium") {
  // test suite here
}