protocol/packages/instant/test/components/zero_ex_instant.test.tsx
2018-10-02 13:29:14 -07:00

14 lines
351 B
TypeScript

import { configure, shallow } from 'enzyme';
import * as Adapter from 'enzyme-adapter-react-16';
import * as React from 'react';
configure({ adapter: new Adapter() });
import { ZeroExInstant } from '../../src';
describe('<ZeroExInstant />', () => {
it('shallow renders without crashing', () => {
shallow(<ZeroExInstant />);
});
});