DEV: Change QUnit reporters to dot (#26360)

This is so the CI output on GitHub actions isn't showing
tons and tons of unnecessary log data every time you want
to see the important thing, which is the actual test failure.
This commit is contained in:
Martin Brennan
2024-03-26 16:54:22 +10:00
committed by GitHub
parent 0bbca318f2
commit 5adfb299ac
2 changed files with 4 additions and 3 deletions

View File

@ -132,6 +132,7 @@ task "qunit:test", %i[timeout qunit_path filter] do |_, args|
cmd += ["--load-balance", "--parallel", parallel] if parallel
cmd += ["--filter", filter] if filter
cmd << "--write-execution-file" if ENV["QUNIT_WRITE_EXECUTION_FILE"]
cmd << "--reporter=#{ENV["QUNIT_REPORTER_FORMAT"]}" if ENV["QUNIT_REPORTER_FORMAT"]
end
# Print out all env for debugging purposes