Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We have come a full circle on this issue - supporting multiple jest configs for a given workspace. This is common for monorepo projects and projects with multiple test environments, such as unit and integration tests. We implemented monorepo support with vscode multi-root workspaces a few years ago. However, this fell short of addressing multi-test-environment that share the same code base (folder).
This PR addresses this gap by introducing the concept of virtual folders. A virtual folder defines a jest runtime environment, customizable with all resource level settings, such as
jestCommanLine
,rootPath
. Multiple virtual folders can reside in any given vscode workspace folder viajest.virtualFolders
. See details documented in the README.md file.The code change outline:
JestExt
to be workspace "agnostic", i.e. it can work with either the actual vscode.WorkspaceFolder or virtualFolder.workspace-manager
,extension-manager
,StatusBar
,CoverageCodeLensProvider
etc to work with virtual folders.DebugConfigurationProvider
to append the folder name to the generated configuration names.resolve #870
resolve #428