Skip to content

Commit

Permalink
build: use built-in swift-testing
Browse files Browse the repository at this point in the history
swift-testing is now built into the toolchain, so we don't need to use the external dependencies.
  • Loading branch information
kkebo committed Aug 18, 2024
1 parent f978ab9 commit b8de029
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 29 deletions.
24 changes: 0 additions & 24 deletions Package.resolved

This file was deleted.

6 changes: 1 addition & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ let package = Package(
targets: ["Box"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-testing", from: "0.10.0")
],
targets: [
.target(
name: "Box",
Expand All @@ -26,8 +23,7 @@ let package = Package(
.testTarget(
name: "BoxTests",
dependencies: [
"Box",
.product(name: "Testing", package: "swift-testing"),
"Box"
]
),
],
Expand Down

0 comments on commit b8de029

Please sign in to comment.