versie 1.4.0 - the 'Me 'n U' update

This commit is contained in:
Mel M. van Veen
2024-12-03 16:05:22 +01:00
parent 198b433ceb
commit 1afb06beed
16 changed files with 458 additions and 12 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { GameMenuComponent } from './game-menu.component';
describe('GameMenuComponent', () => {
let component: GameMenuComponent;
let fixture: ComponentFixture<GameMenuComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [GameMenuComponent]
})
.compileComponents();
fixture = TestBed.createComponent(GameMenuComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});