UNPKG

@delon/cli

Version:
18 lines (13 loc) 551 B
import { TestBed, TestModuleMetadata } from '@angular/core/testing'; import { setUpTestBed } from '@testing/common.spec'; import { LayoutDefaultComponent } from './default.component'; describe('Layout', () => { setUpTestBed(<TestModuleMetadata>{ declarations: [LayoutDefaultComponent] }); it('should create an instance', () => { const fixture = TestBed.createComponent(LayoutDefaultComponent); const comp = fixture.debugElement.componentInstance; expect(comp).toBeTruthy(); }); });