This commit is contained in:
lx
2026-07-06 14:01:11 -04:00
commit c4f97d729d
16468 changed files with 935321 additions and 0 deletions
@@ -0,0 +1,25 @@
return function()
it("should return a table", function()
local action = require(script.Parent.ResetUserThumbnails)
expect(action).to.be.a("table")
end)
it("should return a table when called as a function", function()
local action = require(script.Parent.ResetUserThumbnails)()
expect(action).to.be.a("table")
end)
it("should set the name", function()
local action = require(script.Parent.ResetUserThumbnails)
expect(action.name).to.equal("ResetUserThumbnails")
end)
it("should set the type", function()
local action = require(script.Parent.ResetUserThumbnails)()
expect(action.type).to.equal("ResetUserThumbnails")
end)
end