mirror of
https://github.com/vxcontrol/soldr-modules.git
synced 2026-07-25 08:45:39 -04:00
9 lines
281 B
Lua
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
|