fleet/cypress/integration/premium
2023-02-22 09:05:38 -05:00
..
admin.spec.ts Fleet UI: Consistent URL validation (#9806) 2023-02-22 09:05:38 -05:00
fleetdesktop.spec.ts Fleet Desktop: e2e test for device user page (#4812) 2022-07-12 13:24:08 -04:00
maintainer.spec.ts check disk encryption key from host details page (#9691) 2023-02-14 17:00:36 +00:00
observer.spec.ts check disk encryption key from host details page (#9691) 2023-02-14 17:00:36 +00:00
README.md Rename core->free and basic->premium (#1870) 2021-09-03 13:05:23 -03:00
sso.spec.ts add UI and documentation for JIT provisioning (#7189) 2022-08-15 15:26:55 -03:00
team_admin.spec.ts check disk encryption key from host details page (#9691) 2023-02-14 17:00:36 +00:00
team_maintainer_observer.spec.ts Frontend tech debt: Change all references of homepage to dashboard (#8308) 2022-10-24 16:06:23 -04:00
teamflow.spec.ts Fleet UI Hackathon: Empty states (#9094) 2023-01-04 14:16:34 -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
}