Files
wgenerator/src/app/modules/songs/song/edit/edit-file/edit-file.component.spec.ts
2021-05-21 20:17:26 +02:00

27 lines
673 B
TypeScript

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