Skip to content

Commit

Permalink
chore: Update test all script
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Mar 23, 2020
1 parent 7dd1ae0 commit 517e753
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions scripts/test-all.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
#!/bin/sh

npm run lint && \
npm run dist && \
node ./tests/dekko/dist.test.js && \
LIB_DIR=dist npm test && \
npm run compile && \
node ./tests/dekko/lib.test.js && \
LIB_DIR=es npm test && \
LIB_DIR=lib npm test && \
npm test && \
echo "[TEST ALL] lint"
npm run lint
echo "[TEST ALL] dist"
npm run dist
echo "[TEST ALL] dekko dist"
node ./tests/dekko/dist.test.js
echo "[TEST ALL] dist test"
LIB_DIR=dist npm test
echo "[TEST ALL] compile"
npm run compile
echo "[TEST ALL] dekko lib"
node ./tests/dekko/lib.test.js
echo "[TEST ALL] test es"
LIB_DIR=es npm test
echo "[TEST ALL] test lib"
LIB_DIR=lib npm test
echo "[TEST ALL] test"
npm test
echo "[TEST ALL] test node"
npm run test-node

0 comments on commit 517e753

Please sign in to comment.