24 lines
614 B
TypeScript
24 lines
614 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { GamesBarComponent } from './games-bar.component';
|
|
|
|
describe('GamesBarComponent', () => {
|
|
let component: GamesBarComponent;
|
|
let fixture: ComponentFixture<GamesBarComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ GamesBarComponent ]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(GamesBarComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|