Page MenuHomec4science

toggle-navigation.component.spec.ts
No OneTemporary

File Metadata

Created
Sat, Nov 16, 08:36

toggle-navigation.component.spec.ts

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ToggleNavigationComponent } from './toggle-navigation.component';
describe('ToggleNavigationComponent', () => {
let component: ToggleNavigationComponent;
let fixture: ComponentFixture<ToggleNavigationComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ToggleNavigationComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ToggleNavigationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

Event Timeline