feat: Made additions to grades. Closes #4

This commit is contained in:
2025-05-03 18:47:03 +02:00
parent c767d55e0e
commit 2fc4134acc
21 changed files with 792 additions and 362 deletions

View File

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