Page MenuHomec4science

branch1.component.spec.ts
No OneTemporary

File Metadata

Created
Mon, Feb 24, 13:03

branch1.component.spec.ts

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

Event Timeline