14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
|
import { CommonModule } from './common.module';
|
||
|
|
||
|
describe('CommonModule', () => {
|
||
|
let commonModule: CommonModule;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
commonModule = new CommonModule();
|
||
|
});
|
||
|
|
||
|
it('should create an instance', () => {
|
||
|
expect(commonModule).toBeTruthy();
|
||
|
});
|
||
|
});
|