-
Notifications
You must be signed in to change notification settings - Fork 23
feat: migrate lib to typescript #40
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
97f45b9
refactor: squash #40, rebase upstream
lokshunhung b0b8d11
fix: tsc skip checking node_modules types
lokshunhung 372f8e3
chore: use node 14 types
SimenB d752ebe
add type dependencies as peer deps
SimenB 37effda
Merge branch 'main' into use-typescript
SimenB fa7ddc2
minor cleanup
SimenB 0d8f117
remove unused babel plugin
SimenB File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,12 @@ | |
"node": "6" | ||
} | ||
} | ||
], | ||
[ | ||
"@babel/preset-typescript", | ||
{ | ||
"allowDeclareFields": true | ||
} | ||
] | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
**/node_modules | ||
build | ||
.yarn/ | ||
# remove after migrating to TS | ||
types/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// eslint-disable-next-line import/extensions, import/no-unresolved -- ignore build artifact | ||
const { createJestRunner } = require('../..'); | ||
|
||
module.exports = createJestRunner(require.resolve('./run')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import type { TestResult } from '@jest/test-result'; | ||
import toTestResult from './toTestResult'; | ||
import type { Path } from './types'; | ||
|
||
interface Options { | ||
start: number; | ||
end: number; | ||
test: { title: string; path: Path; errorMessage?: string }; | ||
errorMessage?: string; | ||
} | ||
|
||
export default function fail(options: { | ||
start: number; | ||
end: number; | ||
test: { title: string; path: Path; errorMessage: string }; | ||
}): TestResult; | ||
|
||
export default function fail(options: { | ||
start: number; | ||
end: number; | ||
test: { title: string; path: Path }; | ||
errorMessage: string; | ||
}): TestResult; | ||
|
||
export default function fail({ | ||
start, | ||
end, | ||
test, | ||
errorMessage, | ||
}: Options): TestResult { | ||
// TODO: Currently the `fail` function allows 2 ways to pass an error message. | ||
// Both methods are currently in used by downstream packages. | ||
// The current behaviour is to favour `errorMessage` over `test.errorMessage`. | ||
const actualErrorMessage = errorMessage || test.errorMessage; | ||
|
||
return toTestResult({ | ||
errorMessage: actualErrorMessage, | ||
stats: { | ||
failures: 1, | ||
pending: 0, | ||
passes: 0, | ||
todo: 0, | ||
start, | ||
end, | ||
}, | ||
skipped: false, | ||
tests: [ | ||
{ duration: end - start, ...test, errorMessage: actualErrorMessage }, | ||
], | ||
jestTestPath: test.path, | ||
}); | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import type { TestResult } from '@jest/test-result'; | ||
import toTestResult from './toTestResult'; | ||
import type { TestDetail } from './types'; | ||
|
||
interface Options { | ||
start: number; | ||
end: number; | ||
test: TestDetail; | ||
} | ||
|
||
export default function pass({ start, end, test }: Options): TestResult { | ||
return toTestResult({ | ||
stats: { | ||
failures: 0, | ||
pending: 0, | ||
passes: 1, | ||
todo: 0, | ||
start, | ||
end, | ||
}, | ||
skipped: false, | ||
tests: [{ duration: end - start, ...test }], | ||
jestTestPath: test.path, | ||
}); | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 wonder if we should do
import(runPath)
here?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.
It can be done by changing it to:
But
babel
would emit more codeInstead of what it currently emits:
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.
we should change when we drop node 10