23 lines
692 B
TypeScript
23 lines
692 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { HeaderDropdownComponent } from './header-dropdown.component';
|
|
|
|
describe('HeaderDropdownComponent', () => {
|
|
let component: HeaderDropdownComponent;
|
|
let fixture: ComponentFixture<HeaderDropdownComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [HeaderDropdownComponent],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(HeaderDropdownComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|