aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/test/components/zero_ex_instant.test.tsx
blob: 5858732cfb998ae447f769e0e49b6af7f61c52f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 />);
    });
});