From 941a5b175720bcf8f047b06956d45c6f99483e1b Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 9 Sep 2023 20:43:36 -0700 Subject: [PATCH] correction to tests-uvu npm script test command --- tests/tests-uvu/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests-uvu/package.json b/tests/tests-uvu/package.json index 6a99bd99..6cd2c650 100644 --- a/tests/tests-uvu/package.json +++ b/tests/tests-uvu/package.json @@ -16,7 +16,7 @@ "scripts": { "isnodelt20_6": "node -e \"(([mj, mn]) => (+mj < 20 || (+mj === 20 && +mn < 6)))(process.versions.node.split('.')) || process.exit(1)\"", "test:loader": "node --loader=esmock ./node_modules/uvu/bin.js", - "test:current": "npm run isnodelt20_6 || node ./node_modules/uvu/bin.js", - "test": "npm run test:loader && npm run test:current" + "test:current": "node ./node_modules/uvu/bin.js", + "test": "npm run test:loader && npm run isnodelt20_6 || npm run test:current" } }