mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-02 08:11:41 +02:00
Adapt Anngular frontend to karafun terminology
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
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();
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user