diff --git a/.lune/tests/init.luau b/.lune/tests/init.luau index 89cbbb1..8f6e7ba 100644 --- a/.lune/tests/init.luau +++ b/.lune/tests/init.luau @@ -49,13 +49,19 @@ for _, test in discoverTests("src") do -- we run all the tests -- So, to include only a certain set of test files, you can provide either - -- the full path to the test file (with or without the extension) or the test - -- file name - local withoutExt = string.sub(test, 1, -6) + -- the full path of the test file or name of the test file, with or without + -- the `.spec.luau` extension + local baseName = string.match(test, "([^/\\]+)$") + + local withoutExt = string.sub(test, 1, -11) + local baseNameWithoutExt = string.match(withoutExt, "([^/\\]+)$") + local isAllowed = #process.args == 0 - or table.find(allowedTests, `tests/{test}`) + or table.find(allowedTests, test) or table.find(allowedTests, withoutExt) - or table.find(allowedTests, `tests/{withoutExt}`) + or table.find(allowedTests, baseName) + or table.find(allowedTests, baseNameWithoutExt) + local constructors = { case = frktest.test.case, diff --git a/.lune/tests/reporter.luau b/.lune/tests/reporter.luau index a209997..887851d 100644 --- a/.lune/tests/reporter.luau +++ b/.lune/tests/reporter.luau @@ -45,13 +45,13 @@ function ReporterExt.init() if test.failed then "error" else "success", -- Await receival of the timestamp and convert the difference to ms - (os.clock() - recv_ts()) * 1000 + (os.clock() - recv_ts()) * 1000 ) ) end) frktest.test.on_test_skipped(function(test) - print(STYLE.report(test.name, "skip")) + print(STYLE.report(test.name, "skip", 0)) end) Reporter.init()