Skip to content

Commit

Permalink
Added swift-testing-extensions testing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Oct 26, 2024
1 parent 9a8d1f2 commit e092b16
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ let package = Package(
.package(url: "https://github.com/orchetect/TextFileKit.git", from: "0.2.0"),
.package(url: "https://github.com/orchetect/TimecodeKit.git", from: "2.3.0"),
.package(url: "https://github.com/orchetect/DAWFileKit.git", from: "0.4.11"),
.package(url: "https://github.com/orchetect/OTCore.git", from: "1.6.0")
.package(url: "https://github.com/orchetect/OTCore.git", from: "1.6.0"),
.package(url: "https://github.com/orchetect/swift-testing-extensions.git", from: "0.2.0")
],
targets: [
.target(
Expand All @@ -45,7 +46,10 @@ let package = Package(
),
.testTarget(
name: "MarkersExtractorTests",
dependencies: ["MarkersExtractor"],
dependencies: [
"MarkersExtractor",
.product(name: "TestingExtensions", package: "swift-testing-extensions")
],
resources: [.copy("TestResource/Media Files")],
swiftSettings: [.define("DEBUG", .when(configuration: .debug))]
),
Expand Down

0 comments on commit e092b16

Please sign in to comment.