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 { HourDisplayComponent } from './hour-display.component';
describe('HourDisplayComponent', () => {
let component: HourDisplayComponent;
let fixture: ComponentFixture<HourDisplayComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [HourDisplayComponent]
})
.compileComponents();
fixture = TestBed.createComponent(HourDisplayComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});