Skip to content

Commit

Permalink
Merge pull request #293 from casper-ecosystem/hotfix/test-script
Browse files Browse the repository at this point in the history
Fix test script command
  • Loading branch information
hoffmannjan authored May 10, 2023
2 parents f70f79d + 58603dc commit 319099d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"build": "webpack --config webpack.config.js",
"clean": "rm -rf ./dist",
"~build": "tsc --watch",
"test:node:unit": "cross-env NODE_ENV=test TS_NODE_FILES=true mocha -r ts-node/register src/**/*.test.ts",
"test:node:unit": "cross-env NODE_ENV=test TS_NODE_FILES=true mocha -r ts-node/register \"src/**/*.test.ts\"",
"test:node:unit:coverage": "nyc npm run test:node:unit",
"test:browser:unit": "cross-env NODE_ENV=test karma start karma.conf.js --single-run",
"test:unit": "cross-env NODE_ENV=test npm run test:node:unit && npm run test:browser:unit",
"test:node:e2e": "cross-env NODE_ENV=test TS_NODE_FILES=true mocha -r ts-node/register e2e/**/*.test.ts --timeout 5000000",
"test:node:e2e": "cross-env NODE_ENV=test TS_NODE_FILES=true mocha -r ts-node/register \"e2e/**/*.test.ts\" --timeout 5000000",
"test:e2e": "cross-env NODE_ENV=test npm run test:node:e2e",
"test": "npm run test:unit && npm run test:e2e",
"docs:build": "rm -rf docs && typedoc",
Expand Down

0 comments on commit 319099d

Please sign in to comment.