diff --git a/README.md b/README.md index 4e5ed8a8..86fb9ef2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ --- ## Getting Started -The extension should work out-of-the-box for most common jest projects. To get started: +This extension supports full [jest](https://jestjs.io/) features in vscode environment to make testing more intuitive and fun. It should work out-of-the-box for most common jest projects. To get started: 1. Setup [jest](https://jestjs.io/docs/getting-started) in your project if you haven't. 2. [install](#installation) **"Jest"** extension in vscode. @@ -28,17 +28,17 @@ Happy testing! --- ## Release Notes -### Pre-Release: [v4.5.0](https://github.com/jest-community/vscode-jest/releases/tag/v4.5.0) +### Stable: [v4.6.0](https://github.com/jest-community/vscode-jest/releases/tag/v4.6.0) -
+- added a new setting ["jest.showTerminalOnLaunch"](#showTerminalOnLaunch) to control if test explorer terminal should be automatically opened upon launch. Default is true. +- refactor README -features -- adding a new setting `jest.showTerminalOnLaunch` to control if test explorer terminal should be automatically opened upon launch. Default is true. - -
+### Previous Releases + +
-### Stable: [v4.4.0](https://github.com/jest-community/vscode-jest/releases/tag/v4.4.0) +4.4.0 Interactive run has been extended to watch mode in v4.4.0. Users in watch mode can now run any test/folder/workspace interactively just like with non-watch mode. @@ -93,11 +93,10 @@ Other features: - enhance run/debug tests with quotes in the name. - update documentations and a few bug fixes. -
- More details see [v4.4.0 release](https://github.com/jest-community/vscode-jest/releases/tag/v4.4.0) -### Previous Releases + +
@@ -390,7 +389,7 @@ Users can use the following settings to tailor the extension for their environme |**Misc**| |debugMode|Enable debug mode to diagnose plugin issues. (see developer console)|false|`"jest.debugMode": true`| |disabledWorkspaceFolders 💼|Disabled workspace folders names in multiroot environment|[]|`"jest.disabledWorkspaceFolders": ["package-a", "package-b"]`| -|showTerminalOnLaunch 💼|automatically open test explorer terminal on launch (>= v4.5)|true|`"jest.showTerminalOnLaunch": false`| +|showTerminalOnLaunch 💼|automatically open test explorer terminal on launch (>= v4.5)|true|`"jest.showTerminalOnLaunch": false`| #### Details ##### jestCommandLine diff --git a/package.json b/package.json index 7b4b06d3..0d4bc3ae 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-jest", "displayName": "Jest", "description": "Use Facebook's Jest With Pleasure.", - "version": "4.5.0", + "version": "4.6.0", "publisher": "Orta", "engines": { "vscode": "^1.63.0"