Skip to content

Commit

Permalink
removed pipe from test call, testing two variants
Browse files Browse the repository at this point in the history
  • Loading branch information
suculent committed Jan 16, 2023
1 parent 80873e5 commit 0898c8c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ if [[ ${ENVIRONMENT} == "test" ]]; then
# chmod +x ./cc-test-reporter
# ./cc-test-reporter before-build
npm run test
set -e
else
echo "[thinx-entrypoint] Starting in production mode..."
# tee is used to split pipe with application logs back to file which
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"snyk": "snyk test",
"snyk-protect": "snyk-protect",
"jasmine": "nyc jasmine",
"test": "nyc jasmine; echo 'TEST COMPLETE'; nyc report --reporter=text-lcov > lcov.info; cat lcov.info | node node_modules/coveralls/bin/coveralls.js",
"test": "nyc jasmine; echo 'TEST COMPLETE'; nyc report --reporter=text-lcov > lcov.info; coveralls < cat lcov.info; node ./node_modules/coveralls/bin/coveralls.js < cat lcov.info; echo 'SUBMMISSION COMPLETE';",
"lint": "eslint --config ./.eslintrc --ignore-path ./.eslintignore ./",
"coverage": "npm run mocha",
"mocha": "mocha spec/jasmine --delay=3000 --exit --timeout=5000; nyc report --reporter=text-lcov > lcov.info && cat lcov.info | node node_modules/coveralls/bin/coveralls.js",
Expand Down

0 comments on commit 0898c8c

Please sign in to comment.