Skip to content

Commit

Permalink
Run tests concurrently
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo committed Jun 15, 2022
1 parent d223373 commit 50e5c3c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Makefile
Expand Up @@ -24,11 +24,12 @@ lint: # lints all files
${CURDIR}/node_modules/.bin/tsc --noEmit

test: # runs all tests
${CURDIR}/node_modules/.bin/tsc --noEmit &
${CURDIR}/node_modules/.bin/eslint --ext .ts . &
${CURDIR}/node_modules/.bin/prettier -l . &
${CURDIR}/node_modules/.bin/text-run --offline --format=dot &
${CURDIR}/node_modules/.bin/mocha --reporter dot test/*.ts
${CURDIR}/node_modules/.bin/tsc --noEmit & \
${CURDIR}/node_modules/.bin/eslint --ext .ts . & \
${CURDIR}/node_modules/.bin/prettier -l . & \
${CURDIR}/node_modules/.bin/text-run --offline --format=dot & \
${CURDIR}/node_modules/.bin/mocha --reporter dot test/*.ts & \
wait
.PHONY: test

unit: # runs the unit tests
Expand Down

0 comments on commit 50e5c3c

Please sign in to comment.