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,15 @@
return function()
local Change = require(script.Parent.Change)
it("should yield change listener objects when indexed", function()
expect(Change.Text).to.be.ok()
expect(Change.Selected).to.be.ok()
end)
it("should yield the same object when indexed again", function()
local a = Change.Text
local b = Change.Text
expect(a).to.equal(b)
end)
end