Skip to content

Commit

Permalink
docs: update README with JS intellisense instructions (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemh authored Apr 19, 2020
1 parent a4a06e3 commit fb6052c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,16 @@ and should be added as follows in `tsconfig.json`:
}
```

### Intellisense for JavaScript with VS Code

If you're not using TypeScript, you use VS Code, and want to have code-completion with the methods from this library, simply add the following line to your project's root-level `jsconfig.json` file:

```json
{
"include": ["node_modules/cypress", "./cypress/**/*.js"]
}
```

## Usage

`Cypress Testing Library` extends Cypress' `cy` command.
Expand Down

0 comments on commit fb6052c

Please sign in to comment.