Files
soldr-modules/tests_framework/lua/luacov.lua
T
2023-01-16 10:59:04 +03:00

9 lines
281 B
Lua

--- Loads `luacov.runner` and immediately starts it.
-- Useful for launching scripts from the command-line. Returns the `luacov.runner` module.
-- @class module
-- @name luacov
-- @usage lua -lluacov sometest.lua
local runner = require("luacov.runner")
runner.init()
return runner