* test: add web helpers tests * fix: coverage report * test: add more tests * test: add more generated tests * chore: add more tests * test: add more tests
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
|
|
|
|
import { extensionManager } from './index';
|
|
|
|
describe('index', () => {
|
|
it('should export extensionManager from ExtensionManager', () => {
|
|
expect(extensionManager).toBeDefined();
|
|
});
|
|
});
|