@financial-times/n-conversion-forms
Version:
Containing jsx components and styles for forms included on Accounts and Acquisition apps (next-signup, next-profile, next-retention, etc).
13 lines (9 loc) • 324 B
JavaScript
import { TrialBanner } from './index';
import { expectToRenderCorrectly } from '../test-jest/helpers/expect-to-render-correctly';
expect.extend(expectToRenderCorrectly);
describe('TrialBanner', () => {
it('renders with default props', () => {
const props = {};
expect(TrialBanner).toRenderCorrectly(props);
});
});