fleet/cypress/integration/premium
2022-05-10 11:50:32 -05:00
..
admin.spec.ts E2e testing: Fix attached DOM issues (#5555) 2022-05-10 11:50:32 -05:00
maintainer.spec.ts Spiffier UI: Fix empty states (#5395) 2022-04-29 15:59:27 -04:00
observer.spec.ts UI Revamp: Add hosts modal (#4217) 2022-02-16 16:21:42 -05:00
README.md Rename core->free and basic->premium (#1870) 2021-09-03 13:05:23 -03:00
team_admin.spec.ts E2e testing: Fix attached DOM issues (#5555) 2022-05-10 11:50:32 -05:00
team_maintainer_observer.spec.ts E2e testing: Fix attached DOM issues (#5555) 2022-05-10 11:50:32 -05:00
teamflow.spec.ts E2e testing: Fix attached DOM issues (#5555) 2022-05-10 11:50:32 -05: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
}