Skip to content

Commit

Permalink
add watchosDeviceArm64 test
Browse files Browse the repository at this point in the history
  • Loading branch information
luca992 committed Jun 26, 2024
1 parent b0866df commit 632d8df
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ class TargetPlatformDslTest : StringSpec() {
.shouldHaveTarget("watchosArm64")
}

"adding watchOS targets should add arm 64 device target" {
TargetPlatformDsl().apply { watchOS(someVersion) }.targetPlatforms
.shouldHaveTarget("watchosDeviceArm64")
}

"adding watchOS targets should add arm 64 simulator target" {
TargetPlatformDsl().apply { watchOS(someVersion) }.targetPlatforms
.shouldHaveTarget("watchosSimulatorArm64")
Expand Down

0 comments on commit 632d8df

Please sign in to comment.