Skip to content

Commit

Permalink
Add --no-compilation-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
dbjorge committed Apr 29, 2022
1 parent 2702c12 commit 5128d7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@
"start:unified": "electron drop/electron/unified-dev/product/bundle/main.bundle.js",
"start:unified:dev": "cross-env DEV_MODE=true yarnpkg start:unified",
"start:unified:mock-adb": "cross-env ANDROID_HOME=drop/mock-adb yarnpkg start:unified",
"test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest --projects src/tests/unit",
"test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict --no-compilation-cache' jest --projects src/tests/unit",
"publish-code-coverage": "npx codecov",
"test:e2e": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest --projects src/tests/end-to-end --runInBand --forceExit --detectOpenHandles",
"test:e2e:docker:build": "docker build -t accessibility-insights-e2e --target web .",
"test:e2e": "cross-env NODE_OPTIONS='--unhandled-rejections=strict --no-compilation-cache' jest --projects src/tests/end-to-end --runInBand --forceExit --detectOpenHandles",
"test:e2e:docker:build": "docker build -t accessibility-insights-e2e --target web .",
"test:e2e:docker:build:web": "docker build -t accessibility-insights-web-e2e --target web .",
"test:e2e:docker:build:unified": "docker build -t accessibility-insights-unified-e2e --target unified .",
"test:e2e:docker:run": "docker run -t accessibility-insights-e2e",
"test:e2e:docker:run:web": "docker run -t accessibility-insights-web-e2e",
"test:e2e:docker:run:unified": "docker run -t accessibility-insights-unified-e2e sh -c \"yarn test:unified --ci\"",
"test:e2e:docker": "npm-run-all --serial test:e2e:docker:build \"test:e2e:docker:run {@}\" --",
"test:unified": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest --projects src/tests/electron --runInBand --forceExit --detectOpenHandles",
"test:unified": "cross-env NODE_OPTIONS='--unhandled-rejections=strict --no-compilation-cache' jest --projects src/tests/electron --runInBand --forceExit --detectOpenHandles",
"test:report:e2e": "lerna --scope accessibility-insights-report-e2e-tests run test",
"unified-mac-sign": "node ./pipeline/scripts/unified-mac-sign.js",
"watch": "npm-run-all --parallel --race --print-label watch:scss watch:grunt watch:test watch:webpack-dev-browser watch:webpack-unified",
Expand Down
2 changes: 1 addition & 1 deletion packages/report-e2e-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "tsc",
"lint:check": "eslint --ext .ts ./",
"lint:fix": "eslint --fix -c ../../.eslintrc.js --ext .ts ./",
"test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest --colors --runInBand"
"test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict --no-compilation-cache' jest --colors --runInBand"
},
"repository": "git+https://github.com/microsoft/accessibility-insights-web.git",
"author": "Microsoft",
Expand Down

0 comments on commit 5128d7e

Please sign in to comment.