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

View File