mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-28 02:24:48 +00:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
|
|
/*eslint-disable */
|
||
|
|
import { expect } from 'chai';
|
||
|
|
import Explorer from '../../src/components/explorer';
|
||
|
|
|
||
|
|
|
||
|
|
describe('Explorer', () => {
|
||
|
|
it('exists', () => {
|
||
|
|
expect(Explorer).to.exist;
|
||
|
|
});
|
||
|
|
});
|