Page MenuHomec4science

page-view-component.component.spec.ts
No OneTemporary

File Metadata

Created
Thu, Jan 23, 13:22

page-view-component.component.spec.ts

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

Event Timeline