mirror of
https://github.com/house-of-vanity/hexound.ru.git
synced 2025-07-07 14:54:07 +00:00
26 lines
614 B
TypeScript
26 lines
614 B
TypeScript
![]() |
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { SongComponent } from './song.component';
|
||
|
|
||
|
describe('SongComponent', () => {
|
||
|
let component: SongComponent;
|
||
|
let fixture: ComponentFixture<SongComponent>;
|
||
|
|
||
|
beforeEach(async(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
declarations: [ SongComponent ]
|
||
|
})
|
||
|
.compileComponents();
|
||
|
}));
|
||
|
|
||
|
beforeEach(() => {
|
||
|
fixture = TestBed.createComponent(SongComponent);
|
||
|
component = fixture.componentInstance;
|
||
|
fixture.detectChanges();
|
||
|
});
|
||
|
|
||
|
it('should create', () => {
|
||
|
expect(component).toBeTruthy();
|
||
|
});
|
||
|
});
|