fleet/cypress/integration/basic
Martavis Parker 5d0c7e510e
New Cypress configs and commands (#1268)
* #1024 added configs and commands to run

* #1024 fixed github actions for e2e tests

* #1024 optimized test configs
2021-07-01 10:32:12 -07:00
..
admin.spec.ts New Cypress configs and commands (#1268) 2021-07-01 10:32:12 -07:00
maintainer.spec.ts New Cypress configs and commands (#1268) 2021-07-01 10:32:12 -07:00
observer.spec.ts New Cypress configs and commands (#1268) 2021-07-01 10:32:12 -07:00
README.md Refactor teams service methods (#910) 2021-05-31 17:07:51 -07:00
team_maintainer_observer.spec.ts New Cypress configs and commands (#1268) 2021-07-01 10:32:12 -07:00
teamflow.spec.ts New Cypress configs and commands (#1268) 2021-07-01 10:32:12 -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
}