Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jest-community/vscode-jest
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.0.0
Choose a base ref
...
head repository: jest-community/vscode-jest
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.0.1
Choose a head ref
  • 7 commits
  • 4 files changed
  • 2 contributors

Commits on Jul 8, 2023

  1. Update release info

    connectdotz authored Jul 8, 2023
    Copy the full SHA
    eb2f48d View commit details

Commits on Jul 18, 2023

  1. Update release-note-v6.md

    fix example
    connectdotz authored Jul 18, 2023
    Copy the full SHA
    dd9e0dc View commit details
  2. Update README.md

    fix virtualFolders example
    connectdotz authored Jul 18, 2023
    Copy the full SHA
    0cd9bcd View commit details

Commits on Jul 20, 2023

  1. fix link tag

    connectdotz authored Jul 20, 2023
    Copy the full SHA
    cb5fc15 View commit details

Commits on Jul 23, 2023

  1. Bump semver from 6.3.0 to 6.3.1 (#1048)

    Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 6.3.1.
    - [Release notes](https://github.com/npm/node-semver/releases)
    - [Changelog](https://github.com/npm/node-semver/blob/v6.3.1/CHANGELOG.md)
    - [Commits](npm/node-semver@v6.3.0...v6.3.1)
    
    ---
    updated-dependencies:
    - dependency-name: semver
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 23, 2023
    Copy the full SHA
    8979bd6 View commit details
  2. Bump word-wrap from 1.2.3 to 1.2.4 (#1049)

    Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4.
    - [Release notes](https://github.com/jonschlinkert/word-wrap/releases)
    - [Commits](jonschlinkert/word-wrap@1.2.3...1.2.4)
    
    ---
    updated-dependencies:
    - dependency-name: word-wrap
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jul 23, 2023
    Copy the full SHA
    bd8a8e8 View commit details

Commits on Aug 13, 2023

  1. Copy the full SHA
    ad719cb View commit details
Showing with 21 additions and 20 deletions.
  1. +4 −3 README.md
  2. +2 −2 package.json
  3. +2 −2 release-notes/release-note-v6.md
  4. +13 −13 yarn.lock
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -26,6 +26,7 @@ You can see the full [features](#features) and learn more details in the [How-To
Happy testing!

## Releases
- **Next** ([v6.0.0](https://github.com/jest-community/vscode-jest/releases/tag/v6.0.0)): [release note](release-notes/release-note-v6.md#v600-pre-release)
- **Current** ([v5.2.3](https://github.com/jest-community/vscode-jest/releases/tag/v5.2.3)): [release note](release-notes/release-note-v5.x.md#v523)
- **Previous** ([v5.1.0](https://github.com/jest-community/vscode-jest/releases/tag/v5.1.0)): [release note](release-notes/release-note-v5.x.md#v510)

@@ -255,7 +256,7 @@ Users can use the following settings to tailor the extension for their environme
|---|---|---|---|
|**Process**|
|enable|Enable/disable jest extension for the given workspace folder/virtual-folder|true|`"jest.enable": false`|
|[jestCommandLine](#jestCommandLine)|The command line to start jest tests|undefined|`"jest.jestCommandLine": "npm test --"` or `"jest.jestCommandLine": "yarn test"` or `"jest.jestCommandLine": "node_modules/.bin/jest --config custom-config.js"`|
|[jestCommandLine](#jestcommandline)|The command line to start jest tests|undefined|`"jest.jestCommandLine": "npm test --"` or `"jest.jestCommandLine": "yarn test"` or `"jest.jestCommandLine": "node_modules/.bin/jest --config custom-config.js"`|
|nodeEnv|Add additional env variables to spawned jest process|null|`"jest.nodeEnv": {"PORT": "9800", "BAR":"true"}` |
|[shell](#shell)|shell (path or LoginShell) for executing jest|null|`"jest.shell": "/bin/bash"` or `"jest.shell": "powershell"` or `"jest.shell": {"path": "/bin/bash"; args: ["--login"]}` |
|[autoRun](#autorun)|Controls when and what tests should be run|undefined|`"jest.autoRun": "off"` or `"jest.autoRun": "watch"` or `"jest.autoRun": {"watch": false, "onSave":"test-only"}`|
@@ -480,8 +481,8 @@ You can configure multiple virtual folders within any given vscode workspace fol
// settings.json for unit and integration test environments under the root folder:
{
"jest.virtualFolders": [
{"name": "unit-tests", "jestCommandLine": "--config=jest.unit.config.js", "autoRun": "watch"},
{"name": "integration-tests", "jestCommandLine": "--config=jest.integration.config.js", "autoRun": "off"}
{"name": "unit-tests", "jestCommandLine": "yarn test --config jest.unit.config.js", "autoRun": "watch"},
{"name": "integration-tests", "jestCommandLine": "yarn test --config jest.integration.config.js", "autoRun": "off"}
]
}
```
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "vscode-jest",
"displayName": "Jest",
"description": "Use Facebook's Jest With Pleasure.",
"version": "6.0.0",
"version": "6.0.1",
"publisher": "Orta",
"engines": {
"vscode": "^1.68.1"
@@ -525,7 +525,7 @@
"dependencies": {
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-source-maps": "^4.0.1",
"jest-editor-support": "^31.1.0"
"jest-editor-support": "^31.1.1"
},
"devDependencies": {
"@types/istanbul-lib-coverage": "^2.0.4",
4 changes: 2 additions & 2 deletions release-notes/release-note-v6.md
Original file line number Diff line number Diff line change
@@ -30,12 +30,12 @@ For example, the unit vs. integration tests can now be set up as the following:
"jest.virtualFolders": [
{
"name": "unit-tests",
"jestCommandLine": "--config=jest.unit.config.js",
"jestCommandLine": "yarn test --config=jest.unit.config.js",
"autoRun": "watch"
},
{
"name": "integration-tests",
"jestCommandLine": "--config=jest.integration.config.js",
"jestCommandLine": "yarn test --config=jest.integration.config.js",
"autoRun": "off"
}
]
26 changes: 13 additions & 13 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -2344,10 +2344,10 @@ jest-each@^29.3.1:
jest-util "^29.3.1"
pretty-format "^29.3.1"

jest-editor-support@^31.1.0:
version "31.1.0"
resolved "https://registry.yarnpkg.com/jest-editor-support/-/jest-editor-support-31.1.0.tgz#087a8954d465288f3c544c75feb223f4bc31cea5"
integrity sha512-CGDZh5gO4NRthr6ocmD13pkuSDqZ03Cq+f6UuvwELoNN7p7rkZrEwjPZ/ysMDWoEzRtlTFZ+7sYmfE4kuyhIhQ==
jest-editor-support@^31.1.1:
version "31.1.1"
resolved "https://registry.yarnpkg.com/jest-editor-support/-/jest-editor-support-31.1.1.tgz#46fa8280e6484a2695a6c7c882852e3821100181"
integrity sha512-bCKpKWAMLhjK7QDX9geBDzfyvZacl937hnT3Z+yfERBx8bB7yZg2uhvCBErqO51Ie+wgg42Ffo8rn+Nhdr2hHQ==
dependencies:
"@babel/parser" "^7.20.7"
"@babel/runtime" "^7.20.7"
@@ -3295,16 +3295,16 @@ schema-utils@^3.0.0, schema-utils@^3.1.0, schema-utils@^3.1.1:
ajv-keywords "^3.5.2"

semver@7.x, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8:
version "7.3.8"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798"
integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
version "7.5.4"
resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e"
integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==
dependencies:
lru-cache "^6.0.0"

semver@^6.0.0, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
version "6.3.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==

serialize-javascript@^6.0.0:
version "6.0.0"
@@ -3742,9 +3742,9 @@ wildcard@^2.0.0:
integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==

word-wrap@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
version "1.2.4"
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f"
integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==

wrap-ansi@^7.0.0:
version "7.0.0"