detail on course

This commit is contained in:
OnlyPapy98
2025-12-31 14:53:40 +01:00
parent 87c33f25cf
commit afa5fab55d
17 changed files with 462 additions and 41 deletions

View File

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