aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/test/components
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/test/components')
-rw-r--r--packages/instant/test/components/zero_ex_instant.test.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/instant/test/components/zero_ex_instant.test.tsx b/packages/instant/test/components/zero_ex_instant.test.tsx
new file mode 100644
index 000000000..e373bb002
--- /dev/null
+++ b/packages/instant/test/components/zero_ex_instant.test.tsx
@@ -0,0 +1,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 />);
+ });
+});