aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/loading/loading.component.spec.ts
diff options
context:
space:
mode:
authorDanijel Andjelkovic <adanijel99@gmail.com>2022-04-06 13:07:23 +0200
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-04-06 13:07:23 +0200
commit19fd492a03ea48571d6aaab9e75108a82599ef0a (patch)
treef0a3ffa8d9f9d692c027b0454dedc74cfcf4a79d /frontend/src/app/_elements/loading/loading.component.spec.ts
parent0515cd40b21caad00d375583d17c111bcc9d4635 (diff)
Dodao klasu za notifikacije i dizajn. Dodao spinner u datatable komponentu.
Diffstat (limited to 'frontend/src/app/_elements/loading/loading.component.spec.ts')
-rw-r--r--frontend/src/app/_elements/loading/loading.component.spec.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/loading/loading.component.spec.ts b/frontend/src/app/_elements/loading/loading.component.spec.ts
new file mode 100644
index 00000000..7aacfad9
--- /dev/null
+++ b/frontend/src/app/_elements/loading/loading.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { LoadingComponent } from './loading.component';
+
+describe('LoadingComponent', () => {
+ let component: LoadingComponent;
+ let fixture: ComponentFixture<LoadingComponent>;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ LoadingComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(LoadingComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});