skirda-go-launcher-interface/.obsolete/games-bar/game-button/game-button.component.spec.ts

24 lines
628 B
TypeScript
Raw Normal View History

2022-10-16 18:52:56 +00:00
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { GameButtonComponent } from './game-button.component';
describe('GameButtonComponent', () => {
let component: GameButtonComponent;
let fixture: ComponentFixture<GameButtonComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ GameButtonComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(GameButtonComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});