-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
14 lines (14 loc) · 950 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"dependencies": {
"@lando/leia": "^1.0.0-beta.3"
},
"scripts": {
"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"
}
}