Skip to content

Commit

Permalink
Now it works
Browse files Browse the repository at this point in the history
  • Loading branch information
sulkaharo committed Aug 29, 2017
1 parent caae861 commit e31ac8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ all: test

coverage:
NODE_ENV=test ${MONGO_SETTINGS} \
${ISTANBUL} cover ${MOCHA} -t 30000 -- -R tap ${TESTS}
${ISTANBUL} cover ${MOCHA} --timeout 30000 -- -R tap ${TESTS}

report:
test -f ${ANALYZED} && \
Expand All @@ -41,11 +41,11 @@ report:
YOURPACKAGE_COVERAGE=1 ./node_modules/codacy-coverage/bin/codacy-coverage.js) || echo "NO COVERAGE"

test:
${MONGO_SETTINGS} ${MOCHA} -t 30000 -R tap ${TESTS}
${MONGO_SETTINGS} ${MOCHA} --timeout 30000 -R tap ${TESTS}

travis:
NODE_ENV=test ${MONGO_SETTINGS} \
${ISTANBUL} cover ${MOCHA} -t 30000 --report lcovonly -- -R tap ${TESTS}
${ISTANBUL} cover ${MOCHA} --report lcovonly -- --timeout 30000 -R tap ${TESTS}

docker_release:
# Get the version from the package.json file
Expand Down

0 comments on commit e31ac8f

Please sign in to comment.