You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jest supports a customized configuration through several methods (https://jestjs.io/docs/configuration) and this config resolution is ignored in favor of an override through the extension's settings, or a fallback to just walking up the tree until a config file is found. This means that configuration (such as globalSetup) done in a root config file is ignored when you also have Jest project config files present.
Jest supports a customized configuration through several methods (https://jestjs.io/docs/configuration) and this config resolution is ignored in favor of an override through the extension's settings, or a fallback to just walking up the tree until a config file is found. This means that configuration (such as
globalSetup
) done in a root config file is ignored when you also have Jest project config files present.vscode-jest-runner/src/jestRunnerConfig.ts
Line 84 in 81b797c
Instead, the extension should only specify a config file if there is a
jestrunner.configPath
value defined.This is similar to this issue: #220
The text was updated successfully, but these errors were encountered: