-
-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need to add global.d.ts? #125
Comments
I am not sure I follow. |
declare, it and xit are part Jest. Am I missing something? I am not a js/ts expert. |
anyone using a text editor that uses TypeScript's language services (tsserver) will see errors when they open the test files. this is because |
I use vs code which auto imports jest. This is also coming to TS server I think. |
Is that what you were thinking? |
This is not a code editor issue nor is it related to the Typescript language server. @bttf, In order to resolve your issues you need to run |
There will be compilation errors for all test files with use of global variables
declare
,it
,xit
, etc...Should we add a
global.d.ts
(described here) that specifies these globals, and add them to each of the exercises?The text was updated successfully, but these errors were encountered: