Skip to content

Commit

Permalink
chore: refactor travis file for final push
Browse files Browse the repository at this point in the history
- refactor travis file
  • Loading branch information
Billmike committed Feb 10, 2018
1 parent 007eeb8 commit 73fb95d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ before_script:
- psql -c 'create database recipes_testing_db;' -U postgres
install:
- npm install sequelize
- npm install cross-env
- npm install sequelize-cli
- npm install pg
- npm install pg-hstore
Expand Down
7 changes: 3 additions & 4 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 @@ -23,7 +23,7 @@
"test-client": "jest --config=jest.config.json",
"nyc-local": "cross-env NODE_ENV=test npm run test-migrate && cross-env NODE_ENV=test npm run test",
"test-local": "cross-env NODE_ENV=test npm run test-migrate && cross-env NODE_ENV=test mocha --compilers js:babel-core/register server/__test__/*.spec.js --timeout 50000 --exit",
"test": "nyc mocha server/__test__/*.spec.js",
"test": "nyc cross-env NODE_ENV=test npm run test-migrate && cross-env NODE_ENV=test mocha server/__test__/*.spec.js",
"test-migrate": "sequelize db:migrate:undo:all && sequelize db:migrate",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"client-test": "jest ./client/src/__tests__/**/** --config ./jest.config.js --coverage",
Expand Down Expand Up @@ -61,7 +61,6 @@
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
Expand Down Expand Up @@ -105,6 +104,7 @@
"chai-http": "^3.0.0",
"classnames": "^2.2.5",
"cors": "^2.8.4",
"cross-env": "^5.1.3",
"dot-env": "0.0.1",
"dotenv": "^4.0.0",
"express": "^4.16.2",
Expand Down

0 comments on commit 73fb95d

Please sign in to comment.