7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
|
import React from 'react';
|
||
|
import { mount } from "enzyme";
|
||
|
import NotificationBar from "./NotificationBar";
|
||
|
|
||
|
it('renders without crashing', () => {
|
||
|
mount(<NotificationBar onClose={() => { }} />);
|
||
|
});
|