cic-staff-client/src/app/shared/topbar/topbar.component.spec.ts

26 lines
643 B
TypeScript

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