fleet/cypress/integration/basic
Zach Wasserman 39cef4c43f
Revert "Fleet UI: Reroute homepage (#1640)" (#1724)
Reverts #1640 so that the homepage does not change during the patch release.

This commit will be re-applied after the release is cut.
2021-08-18 18:06:03 -07:00
..
admin.spec.ts Revert "Fleet UI: Reroute homepage (#1640)" (#1724) 2021-08-18 18:06:03 -07: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 Revert "Fleet UI: Reroute homepage (#1640)" (#1724) 2021-08-18 18:06:03 -07: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
}