fleet/cypress/integration/core
RachelElysia 7d99084f5b
Host Details Page: Transfer button (#1233)
* Transfer teams modal for Global Admin and Global Maintainer
* CTA to Create a team for Global Admin only
* Update e2e tests to include transfer host button
2021-06-29 13:48:57 -04:00
..
admin.spec.ts Host Details Page: Transfer button (#1233) 2021-06-29 13:48:57 -04:00
maintainer.spec.ts Host Details Page: Transfer button (#1233) 2021-06-29 13:48:57 -04:00
observer.spec.ts Host Details Page: Transfer button (#1233) 2021-06-29 13:48:57 -04: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
}