First commit with existing project files

This commit is contained in:
2025-10-11 16:10:15 +02:00
commit b7f00bc125
68 changed files with 15871 additions and 0 deletions

View File

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