-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement custom sharding -- iOS (#1779)
- Loading branch information
1 parent
e328dd0
commit 18a682f
Showing
8 changed files
with
371 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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 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 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 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
39 changes: 39 additions & 0 deletions
39
test_runner/src/test/kotlin/ftl/fixtures/test_app_cases/custom_sharding_ios_v1.json
This file contains 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,39 @@ | ||
[ | ||
{ | ||
"EarlGreyExampleSwiftTests": [ | ||
"EarlGreyExampleSwiftTests/testWithGreyAssertions", | ||
"EarlGreyExampleSwiftTests/testWithCondition", | ||
"EarlGreyExampleSwiftTests/testBasicSelection" | ||
] | ||
}, | ||
{ | ||
"EarlGreyExampleSwiftTests": [ | ||
"EarlGreyExampleSwiftTests/testLayout", | ||
"EarlGreyExampleSwiftTests/testCustomAction", | ||
"EarlGreyExampleSwiftTests/testWithCustomMatcher", | ||
"EarlGreyExampleSwiftTests/testWithCustomAssertion" | ||
] | ||
}, | ||
{ | ||
"EarlGreyExampleSwiftTests": [ | ||
"EarlGreyExampleSwiftTests/testThatThrows", | ||
"EarlGreyExampleSwiftTests/testWithInRoot", | ||
"EarlGreyExampleSwiftTests/testCollectionMatchers", | ||
"EarlGreyExampleSwiftTests/testCatchErrorOnFailure" | ||
] | ||
}, | ||
{ | ||
"EarlGreyExampleSwiftTests": [ | ||
"EarlGreyExampleSwiftTests/testTableCellOutOfScreen", | ||
"EarlGreyExampleSwiftTests/testBasicSelectionAndAction" | ||
] | ||
}, | ||
{ | ||
"EarlGreyExampleSwiftTests": [ | ||
"EarlGreyExampleSwiftTests/testBasicSelectionAndAssert", | ||
"EarlGreyExampleSwiftTests/testSelectionOnMultipleElements", | ||
"EarlGreyExampleSwiftTests/testWithCustomFailureHandler", | ||
"EarlGreyExampleSwiftTests/testBasicSelectionActionAssert" | ||
] | ||
} | ||
] |
48 changes: 48 additions & 0 deletions
48
test_runner/src/test/kotlin/ftl/fixtures/test_app_cases/custom_sharding_ios_v2.json
This file contains 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,48 @@ | ||
{ | ||
"en": [ | ||
{ | ||
"SecondUITests": [ | ||
"SecondUITestsClass/test2_PLLocale", | ||
"SecondUITestsClass/test2_3", | ||
"SecondUITestsClass/test2_ENLocale" | ||
], | ||
"UITests": [ | ||
"UITestsClass/test1_1", | ||
"UITestsClass/test1_2", | ||
"UITestsClass/test1_3" | ||
] | ||
}, | ||
{ | ||
"UITests": [ | ||
"UITestsClass/test1_ENLocale", | ||
"UITestsClass/test1_PLLocale" | ||
] | ||
}, | ||
{ | ||
"SecondUITests": [ | ||
"SecondUITestsClass/test2_1", | ||
"SecondUITestsClass/test2_2" | ||
] | ||
} | ||
], | ||
"pl": [ | ||
{ | ||
"UITests": [ | ||
"UITestsClass/test1_1", | ||
"UITestsClass/test1_2", | ||
"UITestsClass/test1_3", | ||
"UITestsClass/test1_ENLocale", | ||
"UITestsClass/test1_PLLocale" | ||
] | ||
}, | ||
{ | ||
"SecondUITests": [ | ||
"SecondUITestsClass/test2_1", | ||
"SecondUITestsClass/test2_2", | ||
"SecondUITestsClass/test2_PLLocale", | ||
"SecondUITestsClass/test2_3", | ||
"SecondUITestsClass/test2_ENLocale" | ||
] | ||
} | ||
] | ||
} |
Oops, something went wrong.