Skip to content

Commit

Permalink
chore: enable verbose test logging to debug ci failures
Browse files Browse the repository at this point in the history
  • Loading branch information
byCedric committed May 19, 2023
1 parent 30b3fb8 commit e30d0bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/jest/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ runTests({
VSCODE_EXPO_DEBUG: 'vscode-expo*', // always enable the debugger
VSCODE_EXPO_TELEMETRY_KEY: '', // always disable telemetry in tests
},
launchArgs: [path.resolve(rootDir, './test/fixture'), '--disable-extensions'],
launchArgs: [
path.resolve(rootDir, './test/fixture'),
'--disable-extensions',
'--verbose',
],
version: process.env.VSCODE_VERSION,
// Reporter is disabled in CI because it's super slow
reporter: process.env.CI ? new SilentReporter() : undefined,
Expand Down

0 comments on commit e30d0bf

Please sign in to comment.