|
6 | 6 | "scripts": {
|
7 | 7 | "generate": "node scripts/generate.js",
|
8 | 8 | "test": "jest --forceExit",
|
| 9 | + "run-tests": "node scripts/run-tests.js", |
9 | 10 | "run-suite": "./scripts/run-suite.sh",
|
10 |
| - "test:firestore": "./scripts/run-suite.sh v1_firestore", |
11 |
| - "test:v1": "./scripts/run-suite.sh v1_firestore v1_database v1_pubsub v1_storage v1_tasks v1_remoteconfig v1_testlab v1_auth_nonblocking", |
12 |
| - "test:v1:all": "./scripts/run-sequential.sh", |
13 |
| - "test:v1:all:parallel": "node scripts/generate.js v1_firestore v1_database v1_pubsub v1_storage v1_tasks v1_remoteconfig v1_testlab v1_auth_nonblocking && ./scripts/run-suite.sh v1_firestore v1_database v1_pubsub v1_storage v1_tasks v1_remoteconfig v1_testlab v1_auth_nonblocking", |
14 |
| - "test:v1:all:save": "npm run test:v1:all 2>&1 | tee test-output-$(date +%Y%m%d-%H%M%S).log", |
15 |
| - "test:v1:auth-before-create": "node scripts/generate.js v1_auth_before_create && ./scripts/run-suite.sh v1_auth_before_create", |
16 |
| - "test:v1:auth-before-signin": "node scripts/generate.js v1_auth_before_signin && ./scripts/run-suite.sh v1_auth_before_signin", |
| 11 | + "test:firestore": "node scripts/run-tests.js v1_firestore", |
| 12 | + "test:v1": "node scripts/run-tests.js v1_firestore v1_database v1_pubsub v1_storage v1_tasks v1_remoteconfig v1_testlab v1_auth_nonblocking", |
| 13 | + "test:v1:all": "node scripts/run-tests.js --sequential 'v1_*'", |
| 14 | + "test:v1:all:parallel": "node scripts/run-tests.js 'v1_*'", |
| 15 | + "test:v2:all": "node scripts/run-tests.js --sequential 'v2_*'", |
| 16 | + "test:v2:all:parallel": "node scripts/run-tests.js 'v2_*'", |
| 17 | + "test:all:sequential": "node scripts/run-tests.js --sequential", |
| 18 | + "test:v1:auth-before-create": "node scripts/run-tests.js v1_auth_before_create", |
| 19 | + "test:v1:auth-before-signin": "node scripts/run-tests.js v1_auth_before_signin", |
17 | 20 | "cleanup": "./scripts/cleanup-suite.sh",
|
18 | 21 | "cleanup:list": "./scripts/cleanup-suite.sh --list-artifacts",
|
19 | 22 | "clean": "rm -rf generated/*",
|
|
0 commit comments