From a0879ddf2cf40ee1e22ae18a0cfaad5a9f04c373 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 18 Dec 2024 12:43:09 +0000 Subject: [PATCH] chore(lune): remove debug print from test runner --- .lune/tests/init.luau | 2 -- 1 file changed, 2 deletions(-) diff --git a/.lune/tests/init.luau b/.lune/tests/init.luau index f54907a..2b8f882 100644 --- a/.lune/tests/init.luau +++ b/.lune/tests/init.luau @@ -46,8 +46,6 @@ local function discoverTests(dir: string): { string } return tests end -print(discoverTests("src")) - local allowedTests = process.args for _, test in discoverTests("src") do -- If we are given any arguments, we only run those tests, otherwise,