Semi Cypress E2E(End to End) test
Run cypress locally
yarn test:cy
βββ fixtures # mock data
β βββ example.json
βββ integration # test cases
β βββ *.spec.js
βββ plugins # custom plugins
β βββ index.js
βββ support # custom commands
β βββ commands.js
β βββ index.js
βββ tsconfig.json # cypress syntax
-
Write a test case in the
integration
folder; -
Debug locally with
yarn test:cy
until the use case is passed.