From 067fb9080d5441d4a23ca50bae3c6563dd7a3931 Mon Sep 17 00:00:00 2001 From: Daniel Cousens <413395+dcousens@users.noreply.github.com> Date: Tue, 23 Jan 2024 21:52:13 +1100 Subject: [PATCH] Remove standard from tests, prefer node testing for first-pass CI (#332) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ca1ad9a..5fe9f49 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "url": "https://github.com/feross/buffer/issues" }, "contributors": [ + "Daniel Cousens", "Romain Beauxis ", "James Halliday " ], @@ -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": { -- 2.34.1