Files
wgenerator/src/app/widget-modules/components/add-song/add-song.component.spec.ts
2021-05-21 20:17:26 +02:00

27 lines
666 B
TypeScript

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