24 lines
528 B
TypeScript
24 lines
528 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { Layout } from './layout';
|
|
|
|
describe('Layout', () => {
|
|
let component: Layout;
|
|
let fixture: ComponentFixture<Layout>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Layout]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Layout);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|