runner
luau
local runner = require("@std/test/runner")runner.run
Runs all test cases and suites in env, executing lifecycle hooks around each case. Returns the aggregate results.
luau
(env: TestEnvironment) -> TestRunResultrunner.runRegisteredTests
Runs all globally registered tests, prints the results with the simple reporter, then exits the process with code 0 on success or 1 on failure.
luau
() -> ()