Skip to content

Commit

Permalink
Correct missing Tuist Test parts
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn committed Dec 4, 2023
1 parent d4b6c10 commit 22e70a1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Sources/Command/Support/Tuist.swift
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@ public struct Tuist {

/// Test the project with arguments
@discardableResult
public func test(_ arguments: [String]) -> Result {
let command = Arguments(["tuist", "test"] + arguments)
return bash.run(command)
public func test(at path: String = ".",_ arguments: [String]) -> Result {
return run(at: path, ["test"] + arguments)
}

/// Running Tuist Command
Expand Down

0 comments on commit 22e70a1

Please sign in to comment.