-
Notifications
You must be signed in to change notification settings - Fork 17
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
Upgrade ts version and webpack version #184
Conversation
Generate changelog in
|
], | ||
verbose: true, | ||
}; | ||
preset: 'ts-jest/presets/js-with-ts', | ||
} |
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.
ran the jest migration script to update this file - it seems to work fine!
@@ -186,8 +186,8 @@ describe("generate command", () => { | |||
expect(fs.existsSync(path.join(outDir, "node_modules/typescript/bin/tsc"))); | |||
}); | |||
|
|||
jest.setTimeout(10000); |
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.
why do we move this out of the test case? seems like other test cases still set the timeout explicitly
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.
I had a similar issue as jestjs/jest#11543 it's simply ignored, I should probably spend more time looking into it
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.
lifted this up to the top level describe and removed from each individual test, are you ok with that?
👍 |
In preparation of #181
As discussed with @ferozco let's release these changes first
Before this PR
outdated version of TS and webpack version
After this PR
updated version of TS/webpack
==COMMIT_MSG==
Upgrade typescript/webpack versions
==COMMIT_MSG==
Possible downsides?