-
Notifications
You must be signed in to change notification settings - Fork 3.9k
[No QA] [TS Migration] Migrate enhanceParametersTest.js, LocalizeTests.js, nativeVersionUpdaterTest.js, createOrUpdateStagingDeployTest.js, TranslateTest.js test to TypeScript #37208
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
puneetlath
merged 12 commits into
Expensify:main
from
JKobrynski:migrateGroup1FilesToTypeScript
Mar 6, 2024
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b5d4175
start migrating the files
JKobrynski 7338370
finish migrating createOrUpdateStagingDeployTest to TypeScript
JKobrynski a81d982
remove lodash from TranslateTest
JKobrynski eb5121c
type casting in TranslateTest
JKobrynski 778d85b
Merge branch 'main' into migrateGroup1FilesToTypeScript
JKobrynski 99fcce8
migrate TranslateTest to TypeScript
JKobrynski 128debb
apply suggested changes
JKobrynski 4c9375a
move arrayDifference to global utils
JKobrynski ece0b1f
Merge branch 'main' into migrateGroup1FilesToTypeScript
JKobrynski 21d3998
apply suggested changes to arrayDifference util funciton
JKobrynski 0edff36
document arrayDifference function
JKobrynski 80dbd5a
Merge branch 'main' into migrateGroup1FilesToTypeScript
JKobrynski 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 |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| /** | ||
| * This function is an equivalent of _.difference, it takes two arrays and returns the difference between them. | ||
| * It returns an array of items that are in the first array but not in the second array. | ||
| */ | ||
| function arrayDifference<TItem>(array1: TItem[], array2: TItem[]): TItem[] { | ||
| return [array1, array2].reduce((a, b) => a.filter((c) => !b.includes(c))); | ||
| } | ||
|
|
||
| export default arrayDifference; | ||
File renamed without changes.
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
1 change: 1 addition & 0 deletions
1
tests/unit/enhanceParametersTest.js → tests/unit/enhanceParametersTest.ts
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
File renamed without changes.
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.
Can we document this function? What exactly is it doing? Is it returning the any values that are either in array1 or array2 but not in both? Or something else?
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.
Function documented, let me know what you think! Regarding the other question, it's because some object keys don't fit the @typescript-eslint/naming-convention rule, that expects them to be camelCase, UPPER_CASE or PascalCase.
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.
Got it, thanks!