mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-28 17:13:31 +01:00
14f02a0b50
Thanks to @justinvdm for the help Merges: #2275
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;
|
|
});
|
|
});
|