Duckable Issue

* IF you have the .testTarget enabled, on Xcode 14.2 you get an error about the test target source needing to be under the "Tests" folder or something similar
This commit is contained in:
Fahim Farook 2023-01-25 10:00:34 +04:00 committed by Gitea
parent 5a9513bb30
commit 2b4898329f
1 changed files with 3 additions and 3 deletions

View File

@ -24,8 +24,8 @@ let package = Package(
.target(
name: "Duckable",
dependencies: []),
.testTarget(
name: "DuckableTests",
dependencies: ["Duckable"]),
// .testTarget(
// name: "DuckableTests",
// dependencies: ["Duckable"]),
]
)