Skip to content

Commit 94a715a

Browse files
committed
Correct
1 parent d539505 commit 94a715a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Package.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ let package = Package(
1818
// Targets are the basic building blocks of a package, defining a module or a test suite.
1919
// Targets can depend on other targets in this package and products from dependencies.
2020
.target(
21-
name: "FormTextField"),
21+
name: "FormTextField",
22+
path: "FormTextField/Sources"),
2223
.testTarget(
2324
name: "FormTextFieldTests",
24-
dependencies: ["FormTextField"]),
25+
dependencies: ["FormTextField"],
26+
path: "FormTextField/Tests"), // Specify the path to your test files if they are in a separate folder
2527
]
2628
)

0 commit comments

Comments
 (0)