mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* Refactor ManagePacksPage as functional component in TypeScript * Refactor old table using TableContainer component * Add Enable, Disable buttons to DataTable component * Update Packs interface with additional properties * Update Cypress e2e tests |
||
|---|---|---|
| .. | ||
| admin.spec.ts | ||
| maintainer.spec.ts | ||
| observer.spec.ts | ||
| README.md | ||
Core tier tests
These tests should only run when the server is in core tier.
To enable the tests:
export CYPRESS_FLEET_TIER=core
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") === "core") {
// test suite here
}