Page MenuHomec4science

heading.component.spec.ts
No OneTemporary

File Metadata

Created
Sat, Apr 27, 15:44

heading.component.spec.ts

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

Event Timeline