Files
wgenerator/src/app/widget-modules/components/song-text/song-text.component.spec.ts
2025-01-05 10:29:29 +01:00

25 lines
652 B
TypeScript

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