21 lines
574 B
TypeScript
21 lines
574 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AdminNavComponent } from './admin-nav.component';
|
|
|
|
describe('AdminNavComponent', () => {
|
|
let component: AdminNavComponent;
|
|
let fixture: ComponentFixture<AdminNavComponent>;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [AdminNavComponent]
|
|
});
|
|
fixture = TestBed.createComponent(AdminNavComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|