fleet/cypress/integration/free
Martavis Parker 349a88e25b
Forcing 404 page where entity ids do not exist (#3833)
* Allow sort by more than one key

* forcing 404 page where entity ids do not exist

* refactored error boundary; handling 404s now

* added 403 overlay; refactored auth wrappers

* fixed test for maintainer

* more efficient fetches; test fixes

* clarify comment

* clean up

Co-authored-by: Tomas Touceda <chiiph@gmail.com>
2022-01-27 14:10:12 -08:00
..
admin.spec.ts Settings > Organization Settings: Code revamp (#3580) 2022-01-21 12:06:58 -05:00
maintainer.spec.ts Forcing 404 page where entity ids do not exist (#3833) 2022-01-27 14:10:12 -08:00
observer.spec.ts Forcing 404 page where entity ids do not exist (#3833) 2022-01-27 14:10:12 -08: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
}