diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-13 20:57:27 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-13 20:57:27 +0100 |
commit | 6aeb963fa64af9dc0ddf2f9aeaf1903a7db26afc (patch) | |
tree | cc8ae72e108934022f9e8b6d9048717b7d6dac7e /frontend/src/app/_pages/home/home.component.spec.ts | |
parent | a561c4bed81a7399dbe900253c0576ad0ba6f5e7 (diff) |
Dodata naslovna strana i navigacioni meni, kao i neke dodatne komponente i modeli podataka (lista elemenata, element-dataset, element-prediktor).
Diffstat (limited to 'frontend/src/app/_pages/home/home.component.spec.ts')
-rw-r--r-- | frontend/src/app/_pages/home/home.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_pages/home/home.component.spec.ts b/frontend/src/app/_pages/home/home.component.spec.ts new file mode 100644 index 00000000..2c5a1726 --- /dev/null +++ b/frontend/src/app/_pages/home/home.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HomeComponent } from './home.component'; + +describe('HomeComponent', () => { + let component: HomeComponent; + let fixture: ComponentFixture<HomeComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ HomeComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(HomeComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |