diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-15 16:06:39 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-15 16:06:39 +0100 |
commit | 6938b1f8fd0a8d27b9fdcc5bc114ffabcd4bac68 (patch) | |
tree | 0725c5ffedd201603b574294be6218b754cdd898 /frontend/src/app/_pages/home/home.component.spec.ts | |
parent | 4791e1ba6d4c3c737e675f54a947251c3d42163d (diff) | |
parent | a9287af015228a73b5053acdef421d9d63ba766b (diff) |
Merge branch 'frontendNaslovna' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
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(); + }); +}); |