Add MyPet and Warps components with HTML, SCSS

Implemented the MyPet and Warps components, including their HTML structure, styles, and unit tests. These components provide detailed information and features for MyPet and Player Warps systems for a Minecraft-inspired application.
This commit is contained in:
Peter
2025-04-19 16:37:27 +02:00
parent 6be6944dea
commit d54a7e51ee
9 changed files with 561 additions and 0 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MypetComponent } from './mypet.component';
describe('MypetComponent', () => {
let component: MypetComponent;
let fixture: ComponentFixture<MypetComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [MypetComponent]
})
.compileComponents();
fixture = TestBed.createComponent(MypetComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});