Skip to content

Commit

Permalink
i think i found out why it wasnt outputting
Browse files Browse the repository at this point in the history
  • Loading branch information
gaymeowing committed Jul 28, 2024
1 parent bd43c5e commit e2c4d9a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion libs/Ratelimit/ratelimit.test.luau
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ TEST("ratelimit", function()
end
end)

return FINISH
if not FINISH() then error(nil, 0) end
2 changes: 1 addition & 1 deletion libs/Url/url.test.luau
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ TEST("url", function()
end
end)

return FINISH
if not FINISH() then error(nil, 0) end
6 changes: 4 additions & 2 deletions libs/isempty/isempty.test.luau
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
assert("meow")

local testkit = require("../../testkit")
local isempty = require("isempty")

Expand All @@ -9,8 +11,8 @@ TEST("isempty", function()
end

do CASE("filled table")
CHECK(isempty({ meow = "mrrp" }) == false)
CHECK(isempty({ meow = "mrrp" }) == true)
end
end)

return FINISH
if not FINISH() then error(nil, 0) end
4 changes: 2 additions & 2 deletions libs/race/race.test.luau
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local testkit = require("../testkit")
local testkit = require("../../testkit")
local task = require("@lune/task")
local race = require("race")

Expand All @@ -21,4 +21,4 @@ TEST("RACE", function()
CHECK(result == "yay! i return!")
end)

return FINISH
if not FINISH() then error(nil, 0) end

0 comments on commit e2c4d9a

Please sign in to comment.