mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-08 12:30:03 +03:00
added routing with two routes: home and player moved most of app component to main component. app component currently just manages the top toolbar
26 lines
628 B
TypeScript
26 lines
628 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { PlayerComponent } from './player.component';
|
|
|
|
describe('PlayerComponent', () => {
|
|
let component: PlayerComponent;
|
|
let fixture: ComponentFixture<PlayerComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ PlayerComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(PlayerComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|