https://github.com/axilleasiv/jest-environment-vscode
jest environment for testing vscode extensions
https://github.com/axilleasiv/jest-environment-vscode
jest vscode vscode-extension
Last synced: 4 months ago
JSON representation
jest environment for testing vscode extensions
- Host: GitHub
- URL: https://github.com/axilleasiv/jest-environment-vscode
- Owner: axilleasiv
- Created: 2019-07-25T23:09:52.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-25T23:16:31.000Z (almost 6 years ago)
- Last Synced: 2024-12-31T16:18:40.777Z (6 months ago)
- Topics: jest, vscode, vscode-extension
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
vscode environment for jest
## Installation
```
npm install jest-environment-vscode
```or
```
yarn add jest-environment-vscode
```## Usage
By adding the "vscode" as testEnvironment in your jest config, for example in the package.json
```json
"jest": {
"roots": [
"/test/jest"
],
"verbose": true,
"silent": true,
"testEnvironment": "vscode"
}
```