1
0
Fork 0
mirror of synced 2024-10-02 10:08:09 +13:00

Fix logs in qa-core test runs

This commit is contained in:
Pedro Silva 2023-03-26 18:05:02 +01:00
parent 077e722862
commit f8f13ed2c7

View file

@ -13,7 +13,7 @@
"test:watch": "env-cmd jest --watch",
"test:debug": "DEBUG=1 jest",
"test:notify": "node scripts/testResultsWebhook",
"test:ci": "jest --runInBand --testPathIgnorePatterns=\\\"\\/dataSources\\/\\\"",
"test:ci": "jest --runInBand --json --outputFile=testResults.json --testPathIgnorePatterns=\\\"\\/dataSources\\/\\\"",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"api:server:setup": "npm run docker:up && env-cmd ts-node ../packages/builder/ts/setup.ts",
@ -21,7 +21,7 @@
"api:test:ci": "start-server-and-test api:server:setup:ci http://localhost:4100/builder test",
"api:test": "start-server-and-test api:server:setup http://localhost:4100/builder test",
"api:test:local": "env-cmd jest --runInBand --testPathIgnorePatterns=\\\"\\/dataSources\\/\\\"",
"api:test:withDataSources": "env-cmd jest --runInBand"
"api:test:withDataSources": "env-cmd jest --runInBand --outputFile=testResults.json"
},
"jest": {
"preset": "ts-jest",