···4343FAIL = color "bright red"
4444PASS = color "bright green"
4545NOTE = color "bright black"
4646+HEADER = color "bright blue"
4647RESET = color "reset"
47484849---@param text string
···204205 local test_module = require(test_module_name)
205206 -- Slightly less verbose name for the test module, removing first component.
206207 local file_name = test_module_name:match "^[^.]+%.(.+)$" or test_module_name
207207- output(string.format("=== Running tests in %s ===", file_name))
208208+ output(
209209+ colorize(string.format("=== Running tests in %s ===", file_name), HEADER)
210210+ )
208211 for suite_name, test_suite in pairs(test_module) do
209212 local suite_failed, suite_total, suite_skipped =
210213 _run_test_suite(file_name, suite_name, test_suite, should_run_test)