-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove standard from tests, prefer node testing for first-pass CI
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
"url": "https://github.com/feross/buffer/issues" | ||
}, | ||
"contributors": [ | ||
"Daniel Cousens", | ||
"Romain Beauxis <[email protected]>", | ||
"James Halliday <[email protected]>" | ||
], | ||
|
@@ -60,12 +61,11 @@ | |
"perf": "browserify --debug perf/bracket-notation.js > perf/bundle.js && open perf/index.html", | ||
"perf-node": "node perf/bracket-notation.js && node perf/concat.js && node perf/copy-big.js && node perf/copy.js && node perf/new-big.js && node perf/new.js && node perf/readDoubleBE.js && node perf/readFloatBE.js && node perf/readUInt32LE.js && node perf/slice.js && node perf/writeFloatBE.js", | ||
"size": "browserify -r ./ | uglifyjs -c -m | gzip | wc -c", | ||
"test": "standard && node ./bin/test.js", | ||
"test": "tape test/*.js test/node/*.js", | ||
"test-browser-old": "airtap -- test/*.js", | ||
"test-browser-old-local": "airtap --local -- test/*.js", | ||
"test-browser-new": "airtap -- test/*.js test/node/*.js", | ||
"test-browser-new-local": "airtap --local -- test/*.js test/node/*.js", | ||
"test-node": "tape test/*.js test/node/*.js", | ||
"update-authors": "./bin/update-authors.sh" | ||
}, | ||
"standard": { | ||
|