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

26 lines
646 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(() => {
TestBed.configureTestingModule({
declarations: [AddSongComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AddSongComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});