local Roact = require(game:GetService("CorePackages").Roact) local Button = require(script.Parent.Parent.Components.Button) local Theming = require(script.Parent.Parent.Theming) return function() it("mounts and unmounts", function() local element = Roact.createElement(Theming.ThemeProvider, { theme = Theming.createTheme({}), }, { Content = Roact.createElement(Button, {}), }) local handle = Roact.mount(element) Roact.unmount(handle) end) end