hemat_solution/src/app/_layout/navigation/verticalnav/verticalnav.component.spec.ts
2024-04-19 12:53:45 +07:00

26 lines
677 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { VerticalnavComponent } from './verticalnav.component';
describe('VerticalnavComponent', () => {
let component: VerticalnavComponent;
let fixture: ComponentFixture<VerticalnavComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ VerticalnavComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(VerticalnavComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});