This repository was archived by the owner on Nov 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +13
-4
lines changed
packages/google-closure-compiler Expand file tree Collapse file tree 5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ # Run the test commands and fail the script if any of them failed
3+ EXIT_STATUS=0
4+ ./packages/google-closure-compiler/test/support/jasmine-launcher.js " $@ " || EXIT_STATUS=$?
5+ exit $EXIT_STATUS
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22# Run the test commands and fail the script if any of them failed
33EXIT_STATUS=0
4- yarn workspaces run test " $@ " || EXIT_STATUS=$?
5- yarn test:root " $@ " || EXIT_STATUS=$?
4+ ./packages/google-closure-compiler/test/support/jasmine-launcher.js " $@ " || EXIT_STATUS=$?
65exit $EXIT_STATUS
Original file line number Diff line number Diff line change 4848 "scripts" : {
4949 "build" : " ./build-scripts/build.sh" ,
5050 "test" : " ./build-scripts/test.sh" ,
51- "test:root" : " node ./packages/google-closure-compiler/test/support/ jasmine-launcher.js --reporter=jasmine-console-reporter test/*.js" ,
51+ "test:root" : " ./build-scripts/ jasmine.sh --reporter=jasmine-console-reporter test/*.js" ,
5252 "clean" : " ./build-scripts/clean.sh" ,
5353 "version" : " ./build-scripts/version-packages.js" ,
5454 "publish-packages" : " ./build-scripts/publish.js"
Original file line number Diff line number Diff line change 6464 },
6565 "scripts" : {
6666 "build" : " echo \" google-closure-compiler build\" " ,
67- "test" : " node ./test/support/jasmine-launcher.js --reporter=jasmine-console-reporter 'test/*.js'"
67+ "test" : " ./test/support/jasmine-launcher.sh --reporter=jasmine-console-reporter 'test/*.js'"
6868 },
6969 "engines" : {
7070 "node" : " >=18"
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ # Run the test commands and fail the script if any of them failed
3+ EXIT_STATUS=0
4+ ./test/support/jasmine-launcher.js " $@ " || EXIT_STATUS=$?
5+ exit $EXIT_STATUS
You can’t perform that action at this time.
0 commit comments