explorer.test.js 200 B

12345678910
  1. /*eslint-disable */
  2. import { expect } from 'chai';
  3. import Explorer from '../../src/components/explorer';
  4. describe('Explorer', () => {
  5. it('exists', () => {
  6. expect(Explorer).to.exist;
  7. });
  8. });