Skip to content

Commit 826b677

Browse files
committed
Add transitive testTarget dependencies to satisfy linker
1 parent 9d4225d commit 826b677

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Package.swift

+5-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,11 @@ let package = Package(
8585
),
8686
.testTarget(
8787
name: "SafeDIToolTests",
88-
dependencies: ["SafeDITool"]
88+
dependencies: [
89+
.product(name: "ArgumentParser", package: "swift-argument-parser"),
90+
.byNameItem(name: "ZippyJSON", condition: .when(platforms: [.iOS, .tvOS, .macOS])),
91+
"SafeDITool",
92+
]
8993
),
9094

9195
// Core

0 commit comments

Comments
 (0)