Files
wgenerator/src/app/modules/songs/song/edit/edit.component.spec.ts
2026-03-16 18:38:46 +01:00

25 lines
602 B
TypeScript

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