In this case, you have several options:
Add jestto your package.json:
"dependencies": {
"jest": "^18.1.0"
}
This only works if you are working with JavaScript and don't have one tsconfig.json.
Set @types/jest
$ npm install @types/jest
JavaScript, TypeScript. @types, jsconfig.json/tsconfig.json: http://www.typescriptlang.org/docs/handbook/tsconfig-json.html
jsconfig.json , jest:
{
"typeAcquisition": {
"include": [
"jest"
]
}
}
JavaScript, .
VSCode