-
Notifications
You must be signed in to change notification settings - Fork 623
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,8 +51,8 @@ | |
"site": "bundle exec jekyll serve", | ||
|
||
"lint": "tslint --project tsconfig.json -c tslint.json --type-check", | ||
"test": "npm run tsc && npm run test:only && npm run lint", | ||
"posttest": "npm run schema && npm run data && npm run mocha:examples", | ||
"test": "npm run tsc && npm run schema && npm run test:only && npm run lint", | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
domoritz
via email
Author
Member
|
||
"posttest": "npm run data && npm run mocha:examples", | ||
"test:nocompile": "npm run test:only && npm run lint && npm run mocha:examples", | ||
"test:only": "nyc --reporter=html --reporter=text-summary npm run mocha:test", | ||
"test:debug": "npm run pretest && mocha --recursive --debug-brk build/test build/examples", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
set -e | ||
|
||
scripts/pre-deploy.sh | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
set -e | ||
|
||
# define color | ||
|
@domoritz Why did you revert my faster test script?