.github
.storybook
__mocks__
cypress
fixtures
integration
plugins
snapshots
support
utils
README.md
config.js
constants.js
dismiss-local-backup.js
mock-server.js
regexp.js
steps.js
Readme.md
run.js
dev-test
functions
img
packages
scripts
website
.all-contributorsrc
.editorconfig
.eslintrc.js
.gitattributes
.gitignore
.nvmrc
.prettierignore
.prettierrc
.stylelintrc
.vale.ini
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
README.md
babel.config.js
cms.png
commitlint.config.js
cypress.json
jest.config.js
lerna.json
netlify.toml
package.json
renovate.json
setupTestFramework.js
tsconfig.json
yarn.lock
10 lines
347 B
Markdown
10 lines
347 B
Markdown
## Utilities for integration tests
|
|
|
|
Utils in this dir must be explicitly included in each spec file, e.g.:
|
|
|
|
```
|
|
import '../utils/dismiss-local-backup';
|
|
```
|
|
|
|
For routines to be executed on all tests, please use the `cypress/plugins.index.js` file instead: https://docs.cypress.io/guides/core-concepts/writing-and-organizing-tests.html#Plugin-files
|