local Roact = require(game:GetService("CorePackages").Roact) local TestLanguageSection = require(script.Parent.Parent.Components.TestLanguageSection) 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(TestLanguageSection, { RobloxLocaleIdChangedSignal = { Connect = function() end, }, }), }) local handle = Roact.mount(element) Roact.unmount(handle) end) end