import React from 'react';
import renderer, { ReactTestRendererJSON } from 'react-test-renderer';
import { Alert } from './Alert';
describe('', () => {
it('has 1 child test', () => {
const component = renderer.create();
const tree = component.toJSON() as ReactTestRendererJSON;
expect(tree.children.length).toBe(1);
});
});