From 85fc98d437c08cdec883a73161e120478737ba72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Fri, 18 May 2018 20:43:21 -0700 Subject: [PATCH] Fix JUnit report location when running Jest Summary: We were incorrectly writing jest's junit output to ~/reports/ instead of ~/react-native/reports. Run on Circle and confirm JUnit test results are rendered: https://circleci.com/gh/hramos/react-native/2208 [INTERNAL][MINOR][CI] - JUnit test collection [skip ci] Closes https://github.com/facebook/react-native/pull/19349 Differential Revision: D8062654 Pulled By: hramos fbshipit-source-id: 72066270042dfae8afce62469fcfabb57bd405a6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ebae261767a74c..1dd9adaf072c05 100644 --- a/package.json +++ b/package.json @@ -123,7 +123,7 @@ ], "scripts": { "test": "jest", - "test-ci": "JEST_JUNIT_OUTPUT=\"~/reports/junit/js-test-results.xml\" jest --maxWorkers=2 --ci --testResultsProcessor=\"jest-junit\"", + "test-ci": "JEST_JUNIT_OUTPUT=\"reports/junit/js-test-results.xml\" jest --maxWorkers=2 --ci --testResultsProcessor=\"jest-junit\"", "flow": "flow", "lint": "eslint .", "prettier": "find . -name node_modules -prune -or -name '*.js' -print | xargs prettier --write",