_From @jorgeas80 on October 1, 2016 18:8_
Steps to Reproduce:
Functions like describe, beforeEach, it and expect are not recognized (see img)

Check list:
"typeRoots": [
"../node_modules/@types"
]
As tsd is officially deprecated since August and I'm using the last VSCode release, why could be happening?
_Copied from original issue: Microsoft/vscode#13125_
_From @jorgeas80 on October 2, 2016 11:2_
I had to add this to make vscode recognize Jasmine typings.
/// <reference path="../../../node_modules/@types/jasmine/index.d.ts" />
It shouldn't be necessary with my version, I think
@jorgeas80 thank you for opening this issue.
@mhegazy can you take a look at this? I have recreated this on my own machine. As far as I can tell everything is setup correctly: tsconfig.json, typings exist in the proper location, etc. Seems like I'm missing a config step though...
_From @blakehawkins on October 11, 2016 14:37_
I have a similar configuration with the same issue - no angular.
Steps to reproduce:
npm install @types/es6-shim"compilerOptions": {"typeRoots": ["./node_modules/@types/"]} kv to tsconfig.jsoncode displays an error at, for example, const features = new Set(arr);Can also confirm that compiling with tsc succeeds.
@blakehawkins thank you for providing more information. This is a language service issue. Moving to that repo.
I am unable to reproduce this locally on latest. please reopen if you are still experiencing issues.
I have this same issue in a Nativescript with Angular 2 project, Jasmine functions are not recognized
@magar91 can you share a repo that we can reproduce the issue?
I was able to reproduce the above error,but was able to resolve it by adding an explicit typing to my tsconfig.json file

This is based on http://stackoverflow.com/questions/39020022/angular-2-unit-tests-cannot-find-name-describe.
Most helpful comment
I was able to reproduce the above error,but was able to resolve it by adding an explicit typing to my tsconfig.json file
This is based on http://stackoverflow.com/questions/39020022/angular-2-unit-tests-cannot-find-name-describe.