Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 2 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-25T23:16:31.000Z (over 5 years ago)
- Last Synced: 2024-11-08T10:51:46.348Z (3 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"
}
```