Skip to content

Commit

Permalink
TINY-10708: bedrock-sample package json scripts now use chrome-headle…
Browse files Browse the repository at this point in the history
…ss instead of phantomjs
  • Loading branch information
danoaky-tiny committed Mar 11, 2024
1 parent 66b20f2 commit c4d3178
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
"scripts": {
"bedrock": "node ../server/bin/bedrock.js",
"bedrock-auto": "node ../server/bin/bedrock-auto.js",
"test-samples-pass": "bedrock-auto -b phantomjs --config tsconfig.json --customRoutes routes.json --polyfills Promise Symbol -d src/test/ts/**/pass",
"test-samples-only": "bedrock-auto -b phantomjs --config tsconfig.json --polyfills Promise Symbol -d src/test/ts/**/only",
"test-samples-pass-js": "bedrock-auto -b phantomjs --polyfills Promise Symbol -d src/test/js/**/pass",
"test-samples-pass": "bedrock-auto -b chrome-headless --config tsconfig.json --customRoutes routes.json --polyfills Promise Symbol -d src/test/ts/**/pass",
"test-samples-only": "bedrock-auto -b chrome-headless --config tsconfig.json --polyfills Promise Symbol -d src/test/ts/**/only",
"test-samples-pass-js": "bedrock-auto -b chrome-headless --polyfills Promise Symbol -d src/test/js/**/pass",
"test-samples-pass-manual": "bedrock --config tsconfig.json --customRoutes routes.json --polyfills Promise Symbol -d src/test/ts/**/pass",
"test-samples-pass-manual-js": "bedrock --polyfills Promise Symbol -d src/test/js/**/pass",
"test-samples-fail": "bedrock-auto -b phantomjs --config tsconfig.json -d src/test/ts/**/fail",
"test-samples-fail": "bedrock-auto -b chrome-headless --config tsconfig.json -d src/test/ts/**/fail",
"test": "yarn test-samples-pass && yarn test-samples-only && yarn test-samples-pass-js"
},
"dependencies": {
Expand Down

0 comments on commit c4d3178

Please sign in to comment.