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