mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-01 07:41:42 +02:00
22 lines
574 B
TypeScript
22 lines
574 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { SongChipComponent } from './song-chip.component';
|
|
|
|
describe('SongChipComponent', () => {
|
|
let component: SongChipComponent;
|
|
let fixture: ComponentFixture<SongChipComponent>;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [SongChipComponent]
|
|
});
|
|
fixture = TestBed.createComponent(SongChipComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|