mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
16 lines
395 B
TypeScript
16 lines
395 B
TypeScript
// Broken for now...
|
|
// import * as renderer from '../renderer';
|
|
// import { globalBeforeEach } from '../__jest__/before-each';
|
|
// describe('imports', () => {
|
|
// beforeEach(globalBeforeEach);
|
|
// it('ui module should import successfully', () => {
|
|
// expect(renderer).toBeDefined();
|
|
// });
|
|
// });
|
|
|
|
describe('dummy', () => {
|
|
it('does it', () => {
|
|
expect(true).toBe(true);
|
|
});
|
|
});
|