Files
SkydiveLogs/Front/skydivelogs-app/src/app/new-jump/new-jump.component.spec.ts
Sébastien André d7c02d7fc0 Update to v11
2021-01-08 16:38:04 +01:00

26 lines
650 B
TypeScript

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