18 lines
445 B
TypeScript
18 lines
445 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { PlayerPage } from './player.page';
|
|
|
|
describe('PlayerPage', () => {
|
|
let component: PlayerPage;
|
|
let fixture: ComponentFixture<PlayerPage>;
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(PlayerPage);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|