experimentes with tui

This commit is contained in:
cyber-dream 2022-09-14 04:36:51 +03:00
parent 85019b2a54
commit 079397f38d
13 changed files with 5 additions and 5 deletions

View File

@ -1,18 +1,18 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { GameBarComponent } from './game-bar.component';
import { GamesBarComponent } from './games-bar.component';
describe('GameBarComponent', () => {
let component: GameBarComponent;
let fixture: ComponentFixture<GameBarComponent>;
let component: GamesBarComponent;
let fixture: ComponentFixture<GamesBarComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ GameBarComponent ]
declarations: [ GamesBarComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(GameBarComponent);
fixture = TestBed.createComponent(GamesBarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

View File