aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/test/components/zero_ex_instant.test.tsx
blob: e373bb002db615a7dbbb722f3ad11c078633ba48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { configure, shallow } from 'enzyme';
import * as Adapter from 'enzyme-adapter-react-16';
import * as React from 'react';

configure({ adapter: new Adapter() });

// TODO: Write non-trivial tests.
// At time of writing we cannot render ZeroExInstant
// because we are looking for a provider on window.
// But in the future it will be dependency injected.
describe('<Test />', () => {
    it('runs a test', () => {
        shallow(<div />);
    });
});