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