Skip to content

Commit

Permalink
intent to fix false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent RENARD authored and Laurent RENARD committed Aug 16, 2019
1 parent 05c80c8 commit 4e7a24d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: npm run test:ci

- run: npm run test:unit
- run: npm run test:int

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"test": "npm run test:unit && npm run test:int",
"test:int": "node ./test/integrations/index.js",
"test:unit": "node ./test/units/index.js",
"test:ci": "set -e; (npm run test:unit | tap-set-exit) && (npm run test:int | tap-set-exit)",
"test:ci": "( npm run test:unit | tap-set-exit) && (npm run test:int | tap-set-exit)",
"doc:build": "node ./src/doc/scripts/compile.js && cp -r ./src/doc/resources ./docs",
"build:clean": "rm -rf ./dist && mkdir -p ./dist/bundle ./dist/declarations && cp -r ./src ./dist/src",
"build:compile": "tsc",
Expand Down

0 comments on commit 4e7a24d

Please sign in to comment.