From f8f13ed2c7545bfdec6a38e658a0b7162233d8f6 Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Sun, 26 Mar 2023 18:05:02 +0100 Subject: [PATCH] Fix logs in qa-core test runs --- qa-core/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa-core/package.json b/qa-core/package.json index dd6d559267..59c028f9f9 100644 --- a/qa-core/package.json +++ b/qa-core/package.json @@ -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",