Skip to content

Commit

Permalink
add nio and vapor to test targets
Browse files Browse the repository at this point in the history
  • Loading branch information
rafiki270 committed Nov 20, 2018
1 parent 05d5747 commit 135d02e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "1.8.0"),
.package(url: "https://github.com/vapor/vapor.git", from: "3.0.0")
],
targets: [
Expand All @@ -31,7 +32,15 @@ let package = Package(
"AppVaporTestTools"
]
),
.testTarget(name: "VaporTestToolsTests", dependencies: ["AppVaporTestTools", "VaporTestTools"])
.testTarget(
name: "VaporTestToolsTests",
dependencies: [
"NIO",
"Vapor",
"AppVaporTestTools",
"VaporTestTools"
]
)
]
)

0 comments on commit 135d02e

Please sign in to comment.