-
Notifications
You must be signed in to change notification settings - Fork 4
CHANGE: @W-19397345@: Use provided workingFolder instead of creating new temp dirs #346
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
Conversation
| "scripts": { | ||
| "build": "tsc --build tsconfig.build.json --verbose", | ||
| "test": "jest --coverage", | ||
| "test": "tsc --build tsconfig.json --noEmit && jest --coverage", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for all the noise in the tests. I had to update a bunch of tests since it turns out that Josh's last change failed to make the tests compile. jest doesn't attempt to do any compile when it executes... so I'm adding in a --noEmit bit before running our tests so we don't miss this anymore.
fc3529f to
f487345
Compare
f487345 to
b7b972e
Compare
b7b972e to
98eaaee
Compare
| @@ -1,20 +1,6 @@ | |||
| import * as tmp from 'tmp'; | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch. Fixed!

No description provided.