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

26 lines
679 B
TypeScript

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