mirror of
https://github.com/britzl/monarch.git
synced 2025-06-27 10:27:49 +02:00
13 lines
223 B
Plaintext
13 lines
223 B
Plaintext
local deftest = require "deftest.deftest"
|
|
|
|
local test_monarch = require "test.test_monarch"
|
|
|
|
|
|
function init(self)
|
|
deftest.add(test_monarch)
|
|
deftest.run({
|
|
coverage = { enabled = true },
|
|
--pattern = "preload",
|
|
})
|
|
end
|