diff --git a/Package.swift b/Package.swift index 8f21b5e..acd27a1 100644 --- a/Package.swift +++ b/Package.swift @@ -45,5 +45,8 @@ let package = Package( .product(name: "Crypto", package: "swift-crypto"), ] ), + .testTarget( + name: "ReporterTests" + ) ] ) diff --git a/Tests/ReporterTests/Dummy.swift b/Tests/ReporterTests/Dummy.swift new file mode 100644 index 0000000..e570aea --- /dev/null +++ b/Tests/ReporterTests/Dummy.swift @@ -0,0 +1,6 @@ +import Testing + +@Test func isTrue() { + let foo = true + #expect(foo == true) +} diff --git a/scripts/build-ubuntu.sh b/scripts/build-ubuntu.sh index 7180995..8e6ab9f 100755 --- a/scripts/build-ubuntu.sh +++ b/scripts/build-ubuntu.sh @@ -20,7 +20,7 @@ if [ -d .build ] ; then fi # Run the tests. -# swift test +swift test # Build the project. swift build