Explorer.test.js 221 B

1234567891011121314
  1. import React from 'react';
  2. import { shallow } from 'enzyme';
  3. import Explorer from './Explorer';
  4. const mockProps = {
  5. };
  6. describe('Explorer', () => {
  7. it('exists', () => {
  8. expect(Explorer).toBeDefined();
  9. });
  10. });