/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { MmenuComponent } from './mmenu.component'; describe('MmenuComponent', () => { let component: MmenuComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ MmenuComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MmenuComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });