Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ using Test, IOCapture
println()
println("Showing the output of one test run:")
println("-"^80)
c = IOCapture.capture(passthrough=true) do
c = IOCapture.capture(passthrough=true, color=true) do
runtests(["--verbose"])
end
println("-"^80)
println()
@test contains(c.output, r"basic .+ started at")
@test contains(c.output, r"basic.*started at")
@test contains(c.output, "SUCCESS")
end

Expand Down