Skip to content

Commit

Permalink
No longer need testCi.js script as we now support node 8+. (#602)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickytonline committed Nov 29, 2018
1 parent 1114623 commit baa41a2
Show file tree
Hide file tree
Showing 4 changed files with 1,968 additions and 29 deletions.
1 change: 0 additions & 1 deletion docs/FAQ.md
Expand Up @@ -109,7 +109,6 @@ Unfortunately, scripts in package.json can't be commented inline because the JSO
│   ├── removeDemo.js # Remove demo app
│   ├── srcServer.js # Starts dev webserver with hot reloading and opens your app in your default browser
│   ├── startMessage.js # Display message when development build starts
│   ├── testCi.js # Configure Jest to run on a CI server
├── webpack.config.dev.js # Configures webpack for development builds
└── webpack.config.prod.js # Configures webpack for production builds
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -22,7 +22,7 @@
"prebuild": "npm run lint && npm run test && npm run clean-dist",
"build": "babel-node tools/build.js && npm run open:dist",
"test": "jest",
"test:CI": "babel-node tools/testCi.js",
"test:CI": "jest",
"test:cover": "npm run test -- --coverage ",
"test:cover:CI": "npm run test:CI -- --coverage && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"test:watch": "jest --watchAll",
Expand Down
16 changes: 0 additions & 16 deletions tools/testCi.js

This file was deleted.

0 comments on commit baa41a2

Please sign in to comment.