fleet/cypress/integration/free
Martavis Parker 0cb8326423
Fixed style for action buttons in all modals (#5402)
* fixed style for action buttons in all modals

* fixed tests and modified more components

* fixed class reference in test

* removed unused file
2022-04-27 13:40:28 -07:00
..
admin.spec.ts Jira Integration: Cypress e2e tests only (#5055) 2022-04-15 12:41:05 -05:00
maintainer.spec.ts Fixed style for action buttons in all modals (#5402) 2022-04-27 13:40:28 -07:00
observer.spec.ts Merge pull request from GHSA-pr2g-j78h-84cr 2022-04-18 10:27:30 -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
}