Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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"
}
```