Skip to content

Commit 7438026

Browse files
Exclude snapshots and fixtures in manifest (#684)
Co-authored-by: Stephen Celis <[email protected]>
1 parent 3f3673d commit 7438026

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Package.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ let package = Package(
1818
.target(name: "SnapshotTesting"),
1919
.testTarget(
2020
name: "SnapshotTestingTests",
21-
dependencies: ["SnapshotTesting"]
21+
dependencies: ["SnapshotTesting"],
22+
exclude: [
23+
"__Snapshots__",
24+
"__Fixtures__"
25+
]
2226
)
2327
]
2428
)

0 commit comments

Comments
 (0)