Skip to content

Commit

Permalink
Create a test target.
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey committed Jul 31, 2024
1 parent 395c76d commit c629b21
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@ let package = Package(
name: "slipstream",
targets: [
.executableTarget(name: "slipstream"),
.testTarget(name: "slipstreamTests", dependencies: [
"slipstream",
])
]
)
File renamed without changes.
8 changes: 8 additions & 0 deletions Tests/slipstreamTests/Test.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import Testing

struct Test {

@Test func helloWorld() async throws {
#expect(true)
}
}

0 comments on commit c629b21

Please sign in to comment.