Skip to content

Commit

Permalink
fix: missing test deps in Project.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
gilgtm committed Dec 4, 2024
1 parent fd23f6a commit 07fbbca
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-custom-dump",
"state" : {
"revision" : "3ce83179e5f0c83ad54c305779c6b438e82aaf1d",
"version" : "1.2.1"
"revision" : "82645ec760917961cfa08c9c0c7104a57a0fa4b1",
"version" : "1.3.3"
}
},
{
Expand Down
6 changes: 5 additions & 1 deletion Samples/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,10 @@ let project = Project(
.unitTest(
for: "WorkflowReactiveSwift",
sources: "../WorkflowReactiveSwift/Tests/**",
dependencies: [.external(name: "WorkflowReactiveSwift")]
dependencies: [
.external(name: "WorkflowReactiveSwift"),
.external(name: "WorkflowReactiveSwiftTesting"),
]
),
.unitTest(
for: "WorkflowReactiveSwiftTesting",
Expand All @@ -205,6 +208,7 @@ let project = Project(
sources: "../WorkflowRxSwift/Tests/**",
dependencies: [
.external(name: "WorkflowRxSwift"),
.external(name: "WorkflowRxSwiftTesting"),
.external(name: "WorkflowReactiveSwift"),
]
),
Expand Down
9 changes: 9 additions & 0 deletions Samples/Tuist/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,15 @@
"version" : "1.1.2"
}
},
{
"identity" : "swift-custom-dump",
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-custom-dump",
"state" : {
"revision" : "82645ec760917961cfa08c9c0c7104a57a0fa4b1",
"version" : "1.3.3"
}
},
{
"identity" : "swift-identified-collections",
"kind" : "remoteSourceControl",
Expand Down

0 comments on commit 07fbbca

Please sign in to comment.