Fix missing test targets
This commit is contained in:
parent
365aa50e7a
commit
14847b2de5
|
@ -74,7 +74,7 @@ extension MigrationManagerTests {
|
||||||
}
|
}
|
||||||
XCTAssertEqual(migrated.id, uuid)
|
XCTAssertEqual(migrated.id, uuid)
|
||||||
XCTAssertEqual(migrated.name, "foobar")
|
XCTAssertEqual(migrated.name, "foobar")
|
||||||
XCTAssertEqual(migrated.userInfo?["user"], "info")
|
XCTAssertEqual((migrated.userInfo as? [String: String])?["user"], "info")
|
||||||
}
|
}
|
||||||
|
|
||||||
func test_givenStrategy_whenMigrateProfiles_thenReturnsMigratedWithUpdates() async throws {
|
func test_givenStrategy_whenMigrateProfiles_thenReturnsMigratedWithUpdates() async throws {
|
||||||
|
|
|
@ -13,35 +13,31 @@
|
||||||
},
|
},
|
||||||
"testTargets" : [
|
"testTargets" : [
|
||||||
{
|
{
|
||||||
"parallelizable" : true,
|
|
||||||
"target" : {
|
"target" : {
|
||||||
"containerPath" : "container:Passepartout\/Library",
|
"containerPath" : "container:Library",
|
||||||
"identifier" : "AppUIMainTests",
|
|
||||||
"name" : "AppUIMainTests"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"parallelizable" : true,
|
|
||||||
"target" : {
|
|
||||||
"containerPath" : "container:Passepartout\/Library",
|
|
||||||
"identifier" : "UILibraryTests",
|
"identifier" : "UILibraryTests",
|
||||||
"name" : "UILibraryTests"
|
"name" : "UILibraryTests"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"parallelizable" : true,
|
|
||||||
"target" : {
|
"target" : {
|
||||||
"containerPath" : "container:Passepartout\/Library",
|
"containerPath" : "container:Library",
|
||||||
"identifier" : "CommonLibraryTests",
|
"identifier" : "LegacyV2Tests",
|
||||||
"name" : "CommonLibraryTests"
|
"name" : "LegacyV2Tests"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"parallelizable" : true,
|
|
||||||
"target" : {
|
"target" : {
|
||||||
"containerPath" : "container:Passepartout\/Library",
|
"containerPath" : "container:Library",
|
||||||
"identifier" : "LegacyV2Tests",
|
"identifier" : "AppUIMainTests",
|
||||||
"name" : "LegacyV2Tests"
|
"name" : "AppUIMainTests"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"target" : {
|
||||||
|
"containerPath" : "container:Library",
|
||||||
|
"identifier" : "CommonLibraryTests",
|
||||||
|
"name" : "CommonLibraryTests"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue