Gestión de Géneros

This commit is contained in:
2025-03-29 23:39:31 +01:00
parent 93f3faae0e
commit 1953fae9db
31 changed files with 1094 additions and 409 deletions

View File

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