UNPKG

cypress-fail-fast

Version:

Skip the rest of Cypress tests on first failure

80 lines (79 loc) 2.19 kB
{ "name": "cypress-fail-fast", "version": "7.1.1", "description": "Skip the rest of Cypress tests on first failure", "keywords": [ "cypress", "cypress-plugin", "fail-fast", "failure", "skip", "cancel", "tests", "testing-tools", "testing", "parallel" ], "author": "Javier Brea", "license": "MIT", "repository": "https://github.com/javierbrea/cypress-fail-fast", "files": [ "src", "index.d.ts", "plugin.js", "plugin.d.ts" ], "main": "index.js", "types": "index.d.ts", "scripts": { "lint": "eslint src test *.js test-e2e/*.js test-e2e/commands/**/*.js test-e2e/cypress-src/**/*.js test-e2e/test/**/*.js", "lint-staged": "lint-staged", "test": "jest", "test:unit": "npm run test", "test:e2e:install": "cd test-e2e && npm i", "test:e2e:run": "cd test-e2e && npm run test:ci", "test:e2e:run:debug": "cross-env DEBUG=true npm run test:e2e:run", "test:e2e:debug": "npm run test:e2e:install && npm run test:e2e:run:debug", "test:e2e:ci": "npm run test:e2e:install && npm run test:e2e:run", "test:ci": "npm run test && npm run test:mutation && npm run test:e2e:ci", "test:mutation": "stryker run", "tsc": "tsc", "prepare": "is-ci || husky install" }, "peerDependencies": { "cypress": ">=8.0.0" }, "dependencies": { "chalk": "4.1.2" }, "devDependencies": { "@babel/eslint-parser": "7.25.1", "@stryker-mutator/core": "7.3.0", "@stryker-mutator/jest-runner": "7.3.0", "cross-env": "7.0.3", "cypress": "13.13.2", "eslint": "8.54.0", "eslint-config-prettier": "9.1.0", "eslint-plugin-prettier": "5.2.1", "eslint-plugin-react": "7.35.0", "husky": "9.1.4", "is-ci": "3.0.1", "jest": "29.7.0", "lint-staged": "15.2.8", "prettier": "3.3.3", "sinon": "18.0.0", "typescript": "5.5.4" }, "lint-staged": { "*.js": "eslint", "src/**/*.js": "eslint", "test/**/*.js": "eslint", "test-e2e/*.js": "eslint", "test-e2e/commands/**/*.js": "eslint", "test-e2e/cypress-src/**/*.js": "eslint", "test-e2e/test/**/*.js": "eslint" }, "engines": { "node": ">=14.0.0" } }