-
-
Notifications
You must be signed in to change notification settings - Fork 50.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |