diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-24 06:34:39 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-24 06:34:39 +0100 |
commit | f0bd85754949f0fe76c4b6ed6c4c810f193a23b7 (patch) | |
tree | d75db1d1d3bab7bb6af4942271fffea708a26130 /frontend/src/app/_elements/notifications/notifications.component.spec.ts | |
parent | 042482a1bbd6ea3460acf3d71bfe3ef64b05524a (diff) |
Dodao komponentu koha ce prikazivati notifikacije korisniku.
Diffstat (limited to 'frontend/src/app/_elements/notifications/notifications.component.spec.ts')
-rw-r--r-- | frontend/src/app/_elements/notifications/notifications.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/notifications/notifications.component.spec.ts b/frontend/src/app/_elements/notifications/notifications.component.spec.ts new file mode 100644 index 00000000..4ae22edc --- /dev/null +++ b/frontend/src/app/_elements/notifications/notifications.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { NotificationsComponent } from './notifications.component'; + +describe('NotificationsComponent', () => { + let component: NotificationsComponent; + let fixture: ComponentFixture<NotificationsComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ NotificationsComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(NotificationsComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |