Skip to content

Commit

Permalink
Fixed #5 pattern matching for module specific test command.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mason, Bryan committed Jun 7, 2018
1 parent 2910c1b commit b206272
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace || true",
"test:module1": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace src/__tests__/module1 || true",
"test:module2": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace src/__tests__/module2 || true",
"test:module3": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace src/__tests__/module3 || true",
"test:module4": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace src/__tests__/module4 || true",
"test:module5": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace src/__tests__/module5 || true",
"test:module6": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace src/__tests__/module6 || true",
"test:module7": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace src/__tests__/module7 || true",
"test:module1": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace module1 || true",
"test:module2": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace module2 || true",
"test:module3": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace module3 || true",
"test:module4": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace module4 || true",
"test:module5": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace module5 || true",
"test:module6": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace module6 || true",
"test:module7": "./node_modules/.bin/cross-env CI=true react-scripts test --env=jsdom --noStackTrace module7 || true",
"eject": "react-scripts eject"
},
"jest": {
Expand Down

0 comments on commit b206272

Please sign in to comment.