dcb-backoffice/src/app/layouts/vertical-layout/vertical-layout.spec.ts

23 lines
569 B
TypeScript

import { ComponentFixture, TestBed } from '@angular/core/testing'
import { VerticalLayout } from './vertical-layout'
describe('VerticalLayout', () => {
let component: VerticalLayout
let fixture: ComponentFixture<VerticalLayout>
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [VerticalLayout],
}).compileComponents()
fixture = TestBed.createComponent(VerticalLayout)
component = fixture.componentInstance
fixture.detectChanges()
})
it('should create', () => {
expect(component).toBeTruthy()
})
})