Fix missing test targets

This commit is contained in:
Davide 2024-12-06 15:52:25 +01:00
parent 365aa50e7a
commit 14847b2de5
No known key found for this signature in database
GPG Key ID: A48836171C759F5E
2 changed files with 15 additions and 19 deletions

View File

@ -74,7 +74,7 @@ extension MigrationManagerTests {
}
XCTAssertEqual(migrated.id, uuid)
XCTAssertEqual(migrated.name, "foobar")
XCTAssertEqual(migrated.userInfo?["user"], "info")
XCTAssertEqual((migrated.userInfo as? [String: String])?["user"], "info")
}
func test_givenStrategy_whenMigrateProfiles_thenReturnsMigratedWithUpdates() async throws {

View File

@ -13,35 +13,31 @@
},
"testTargets" : [
{
"parallelizable" : true,
"target" : {
"containerPath" : "container:Passepartout\/Library",
"identifier" : "AppUIMainTests",
"name" : "AppUIMainTests"
}
},
{
"parallelizable" : true,
"target" : {
"containerPath" : "container:Passepartout\/Library",
"containerPath" : "container:Library",
"identifier" : "UILibraryTests",
"name" : "UILibraryTests"
}
},
{
"parallelizable" : true,
"target" : {
"containerPath" : "container:Passepartout\/Library",
"identifier" : "CommonLibraryTests",
"name" : "CommonLibraryTests"
"containerPath" : "container:Library",
"identifier" : "LegacyV2Tests",
"name" : "LegacyV2Tests"
}
},
{
"parallelizable" : true,
"target" : {
"containerPath" : "container:Passepartout\/Library",
"identifier" : "LegacyV2Tests",
"name" : "LegacyV2Tests"
"containerPath" : "container:Library",
"identifier" : "AppUIMainTests",
"name" : "AppUIMainTests"
}
},
{
"target" : {
"containerPath" : "container:Library",
"identifier" : "CommonLibraryTests",
"name" : "CommonLibraryTests"
}
},
{