Added the SwiftLibs package as a dependency to the test target in the Package file.

This commit is contained in:
Javier Cicchelli 2023-04-19 01:37:45 +02:00
parent 81e87e4be1
commit ac9248b21d

View File

@ -32,7 +32,8 @@ let package = Package(
.testTarget( .testTarget(
name: "AmiiboServiceTests", name: "AmiiboServiceTests",
dependencies: [ dependencies: [
"AmiiboService" "AmiiboService",
.product(name: "SwiftLibs", package: "swift-libs")
], ],
path: "Tests" path: "Tests"
), ),