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,16 @@
local CorePackages = game:GetService("CorePackages")
return function()
local Roact = require(CorePackages.Roact)
local Modalifier = require(script.Parent.Parent.Components.Modalifier)
it("mounts and unmounts and puts the curtain up", function()
local container = Instance.new("Frame")
local element = Roact.createElement(Modalifier, {
Window = container
})
local handle = Roact.mount(element)
expect(container.Curtain).to.be.ok()
Roact.unmount(handle)
end)
end