Skip to content

Commit

Permalink
Use SPM Swift Testing (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLeif authored Aug 7, 2024
1 parent 0e075cc commit c2c9724
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ let package = Package(
targets: ["Later"]
)
],
dependencies: [
.package(url: "https://github.com/swiftlang/swift-testing.git", from: "0.11.0")
],
targets: [
.target(
name: "Later",
Expand All @@ -28,7 +31,10 @@ let package = Package(
),
.testTarget(
name: "LaterTests",
dependencies: ["Later"]
dependencies: [
"Later",
"swift-testing"
]
)
]
)

0 comments on commit c2c9724

Please sign in to comment.