UNPKG

@rocket.chat/onboarding-ui

Version:

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

7 lines 514 B
import { jsx as _jsx } from "react/jsx-runtime"; import { render } from '@testing-library/react'; import AdminInfoForm from './AdminInfoForm'; it('renders without crashing', function () { render(_jsx(AdminInfoForm, { currentStep: 1, stepCount: 1, passwordRulesHint: '', validateEmail: function () { return true; }, validatePassword: function () { return true; }, validateUsername: function () { return true; }, onSubmit: function () { return undefined; } })); }); //# sourceMappingURL=AdminInfoForm.spec.js.map