fleet/cypress/integration/basic
gillespi314 8b4c6a1dd7
Add host modal: Select team dropdown (#1740)
* Fix Add host modal dropdown for team maintainer

* Update Cypress tests

* Set default values for add host team dropdown
2021-08-20 23:00:44 -05:00
..
admin.spec.ts Add host modal: Select team dropdown (#1740) 2021-08-20 23:00:44 -05:00
maintainer.spec.ts Revert "Fleet UI: Reroute homepage (#1640)" (#1724) 2021-08-18 18:06:03 -07:00
observer.spec.ts Revert "Fleet UI: Reroute homepage (#1640)" (#1724) 2021-08-18 18:06:03 -07:00
README.md Refactor teams service methods (#910) 2021-05-31 17:07:51 -07:00
team_maintainer_observer.spec.ts Add host modal: Select team dropdown (#1740) 2021-08-20 23:00:44 -05:00
teamflow.spec.ts Add minimum width for Fleet UI and "Pack" tables on "Host details" page and "Queries" table (#1701) 2021-08-18 09:17:16 -04: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
}