Page MenuHomec4science

branch-ul.component.spec.ts
No OneTemporary

File Metadata

Created
Sun, Jun 29, 22:15

branch-ul.component.spec.ts

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

Event Timeline