UNPKG

@rocket.chat/onboarding-ui

Version:

Set of components and functions for the onboarding experience on Rocket.Chat

7 lines 560 B
import { jsx as _jsx } from "react/jsx-runtime"; import { render } from '@testing-library/react'; import CreateNewAccountPage from './CreateNewAccountPage'; it('renders without crashing', function () { render(_jsx(CreateNewAccountPage, { validateEmail: function () { return undefined; }, validatePassword: function () { return undefined; }, validateConfirmationPassword: function () { return undefined; }, onSubmit: function () { return undefined; }, onLogin: function () { return undefined; } })); }); //# sourceMappingURL=CreateNewAccountPage.spec.js.map