fixed up dashboard

This commit is contained in:
Bojan Kucera 2025-06-02 20:44:38 -04:00
parent 90168ba619
commit e3bfd05b90
17 changed files with 1522 additions and 92 deletions

View file

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