Files
wgenerator/src/app/modules/songs/song/edit/edit-file/edit-file.component.spec.ts
2020-05-13 19:35:21 +02:00

26 lines
639 B
TypeScript

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