From 49d4f537d64fd49754d149394f2d1b22b47e9f8f Mon Sep 17 00:00:00 2001 From: szymonrybczak Date: Fri, 30 Aug 2024 21:50:15 +0200 Subject: [PATCH] configOutput --- __e2e__/root.test.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/__e2e__/root.test.ts b/__e2e__/root.test.ts index eb38e6f56..4732878aa 100644 --- a/__e2e__/root.test.ts +++ b/__e2e__/root.test.ts @@ -48,6 +48,15 @@ beforeAll(() => { cwd: path.join(DIR, 'TestProject'), }); console.log(yarnWHy.stdout); + + const configOutput = spawnScript( + 'npx', + ['@react-native-community/cli', 'config'], + { + cwd: path.join(DIR, 'TestProject'), + }, + ); + console.log(configOutput.stdout); }); afterAll(() => {