From bf51a4a6b2f4521fc55361250e26a009da124b02 Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Mon, 13 May 2024 18:07:32 +1000 Subject: [PATCH] test: update package.json --- package.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 5450a43..56d4ae2 100644 --- a/package.json +++ b/package.json @@ -3,13 +3,12 @@ "@lando/leia": "^1.0.0-beta.3" }, "scripts": { - "generate-tests": "leia \"**/TESTING*.md\" test -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests' --split-file", - "test:lando": "mocha --timeout 900000 test/lando*.func.js", - "test:dockercompose": "mocha --timeout 900000 test/docker*.func.js", - "test:simple": "mocha --timeout 900000 test/docker*base*.func.js", - "test:advanced": "mocha --timeout 900000 test/docker*option*.func.js", - "test:all": "mocha --timeout 900000 test/*.func.js", - "test": "mocha --timeout 900000 ", - "test-debug": "DEBUG=mocha:* mocha --timeout 900000 " + "test:lando": "leia **/TESTING_lando.md -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests'", + "test:dockercompose": "leia **/TESTING_dockercompose.md -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests'", + "test:simple": "leia *-base/TESTING_dockercompose.md -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests'", + "test:advanced": "leia **/TESTING_dockercompose.md --ignore *-base/TESTING_dockercompose.md -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests'", + "test:all": "leia **/TESTING_*.md -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests'", + "test": "leia $TEST -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests'", + "test-debug": "leia $TEST -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests' --debug" } }