Files
FarmMapsLib/src/app/test/test.component.spec.ts
Willem Dantuma 640c99cde2
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Add test component
2020-10-06 09:07:40 +02:00

26 lines
612 B
TypeScript

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