fleet/cypress/integration/basic
gillespi314 c51ef4447d
Revise help text on team members page (#1179)
* Revise help text on team members page

* Update Cypress test
2021-06-23 22:20:56 -05:00
..
admin.spec.ts Revise help text on team members page (#1179) 2021-06-23 22:20:56 -05:00
maintainer.spec.ts E2e Testing: Fleet Core global observer (#1099) 2021-06-16 13:40:23 -04:00
observer.spec.ts E2e test: Fleet basic observers - global and team only (#1118) 2021-06-21 21:29:59 -04:00
README.md Refactor teams service methods (#910) 2021-05-31 17:07:51 -07:00
team_maintainer_observer.spec.ts E2e testing: Add stopDockerHost command to Cypress tests (#1112) 2021-06-16 13:09:52 -05:00
teamflow.spec.ts Refactor teams service methods (#910) 2021-05-31 17:07:51 -07:00

Basic tier tests

These tests should only run when the server is in basic tier.

To enable the tests:

export CYPRESS_FLEET_TIER=basic

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") === "basic") {
  // test suite here
}