fleet/cypress/integration/free
Martavis Parker 688a9f01d5
E2E Test fixes (#2491)
* fixed flow for resetting current session

* ignoring downloads for windows because paths

* using correct shell for windows

* using correct shell for windows

* ignoring exception; we can't fake react context

* changes file

* must wait for flash to show

* lint fixes

* re-added secure package
2021-10-12 14:33:56 -07:00
..
admin.spec.ts Use new home dashboard (#2212) 2021-10-03 11:15:58 -07:00
maintainer.spec.ts E2E Test fixes (#2491) 2021-10-12 14:33:56 -07:00
observer.spec.ts E2E Test fixes (#2491) 2021-10-12 14:33:56 -07:00
README.md Rename core->free and basic->premium (#1870) 2021-09-03 13:05:23 -03:00

Free tier tests

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

To enable the tests:

export CYPRESS_FLEET_TIER=free

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