25 lines
637 B
TypeScript
25 lines
637 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();
|
|
});
|
|
});
|