mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
10 lines
261 B
JavaScript
10 lines
261 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();
|
|
});
|
|
});
|