Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillick committed Jun 22, 2023
1 parent 6410b51 commit 9e408a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JestExt/helper.ts
Expand Up @@ -111,7 +111,7 @@ export const getExtensionResourceSettings = (

return {
jestCommandLine: getSetting<string>('jestCommandLine'),
autoClearTerminal: config.get<boolean>('autoClearTerminal') ?? false,
autoClearTerminal: getSetting<boolean>('autoClearTerminal') ?? false,
rootPath: toAbsoluteRootPath(workspaceFolder, getSetting<string>('rootPath')),
showCoverageOnLoad: getSetting<boolean>('showCoverageOnLoad') ?? false,
coverageFormatter: getSetting<string>('coverageFormatter') ?? 'DefaultFormatter',
Expand Down

0 comments on commit 9e408a2

Please sign in to comment.