mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
* Rename core->free and basic->premium * Fix lint js * Comment out portion of test that seems to timeout * Rename tier to premium if basic is still loaded
530 B
530 B
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
}