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