mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
import * as renderer from '../renderer';
|
|
import {globalBeforeEach} from '../__jest__/before-each';
|
|
|
|
describe('imports', () => {
|
|
beforeEach(globalBeforeEach);
|
|
it('ui module should import successfully', () => {
|
|
expect(renderer).toBeDefined();
|
|
});
|
|
});
|