Skip to content

Commit

Permalink
ci(circleci): replace jasmine with mocha
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Dec 11, 2019
1 parent dbc9192 commit 4a37164
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: npm install && npm i jasmine-xml-reporter
- run: npm install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: ./node_modules/jasmine-xml-reporter/bin/jasmine.js --junitreport --output=junit
- run: npm run test-ci

- store_test_results:
path: junit
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:

- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc

- run: npm install && npm i jasmine-xml-reporter
- run: npm install

- save_cache:
paths:
Expand Down

0 comments on commit 4a37164

Please sign in to comment.