|
25 | 25 | "husky:install": "husky install",
|
26 | 26 | "lint": "eslint --fix '**/*.{ts,tsx,js}'",
|
27 | 27 | "test": "jest --runInBand",
|
28 |
| - "test:cov": "jest --runInBand --coverage --coverageDirectory reports/coverage-jest", |
| 28 | + "test:cov": "CI=true COVERAGE=true jest --runInBand --coverage --coverageDirectory reports/coverage-jest", |
29 | 29 | "cy": "cypress",
|
30 | 30 | "cy:open": "npm run cy -- open",
|
31 | 31 | "cy:run": "npm run cy -- run --browser chrome --headless",
|
|
37 | 37 | "build:tests": "tsc && cd tests && tsc",
|
38 | 38 | "build:cy": "cd integration && tsc",
|
39 | 39 | "build:all": "npm run build && npm run build:cy && npm run build:tests",
|
40 |
| - "test:all": "npm run test:cov", |
41 | 40 | "cov:merge": "node ./.scripts/merge.js --cypress reports/coverage-cypress --jest reports/coverage-jest --out reports/coverage-temp --report reports/coverage-full",
|
42 | 41 | "cov": "http-server reports/coverage-full/lcov-report",
|
43 | 42 | "cov:jest": "http-server reports/coverage-jest/lcov-report",
|
44 | 43 | "cov:cy": "http-server reports/coverage-cypress/lcov-report",
|
45 | 44 | "cov:check": "COVERAGE_TEMP=reports/coverage-temp nyc check-coverage",
|
46 | 45 | "all": "npm run pre && npm run cov:check && npm run cov",
|
47 |
| - "pre": "rm -rf ./node_modules/.cache lib reports coverage-nyc .nyc_output && npm run lint && npm run build:all && npm run test:all && npm run cov:merge", |
| 46 | + "pre": "rm -rf ./node_modules/.cache lib reports coverage-nyc .nyc_output && npm run lint && npm run build:all && npm run test:cov && npm run cov:merge", |
48 | 47 | "pack": "npm run build && cp package.json ./lib/package.json && cp README.pack.md ./lib/README.md && sh .scripts/remove.sh && cd lib && npm version $ver --no-git-tag-version ",
|
49 | 48 | "prepublish": "npm run lint",
|
50 | 49 | "prepublishOnly": "{ echo \"Run script 'npm run publish:pack', 'npm run publish:minor', etc from package.json\n\"; exit 1; }",
|
|
70 | 69 | "@typescript-eslint/eslint-plugin": "^5.44.0",
|
71 | 70 | "@typescript-eslint/parser": "^5.44.0",
|
72 | 71 | "allure-commandline": "^2.22.4",
|
73 |
| - "cypress": "^12.17.0", |
74 |
| - "cypress-redirect-browser-log": "^1.1.0", |
| 72 | + "cypress": "^12.17.1", |
| 73 | + "cypress-redirect-browser-log": "^1.1.1", |
75 | 74 | "eslint": "^8.28.0",
|
76 | 75 | "eslint-config-prettier": "^8.5.0",
|
77 | 76 | "eslint-plugin-cypress": "^2.12.1",
|
|
0 commit comments