fleet/cypress/integration/core
RachelElysia 267b7343e1
Manage Packs Page: Refactor to typescript, functional components, new UI (#1567)
* 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
2021-08-10 14:25:34 -04:00
..
admin.spec.ts Fix flaky E2E test (#1604) 2021-08-09 18:18:04 -07:00
maintainer.spec.ts Manage Packs Page: Refactor to typescript, functional components, new UI (#1567) 2021-08-10 14:25:34 -04:00
observer.spec.ts Refactor manage queries page (#1526) 2021-08-03 15:09:01 -05:00
README.md Set up Cypress testing for Teams/Tiers (#1005) 2021-06-09 11:56:59 -07:00

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
}