diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-04-25 00:56:45 +0200 |
---|---|---|
committer | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-04-25 00:56:45 +0200 |
commit | aee2cd43578a255f5a0e346ac8955f663a673cca (patch) | |
tree | bbacd9840b80dd3f85f28743db977f0a15c87655 /frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts | |
parent | 8497bc988f2a5cbca10ee6870708bd4c06c24dd2 (diff) |
Ažurirana komponenta form-model, dodata komponenta hidden-layer.
Diffstat (limited to 'frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts')
-rw-r--r-- | frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts new file mode 100644 index 00000000..103e4539 --- /dev/null +++ b/frontend/src/app/_elements/hidden-layer/hidden-layer.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HiddenLayerComponent } from './hidden-layer.component'; + +describe('HiddenLayerComponent', () => { + let component: HiddenLayerComponent; + let fixture: ComponentFixture<HiddenLayerComponent>; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ HiddenLayerComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(HiddenLayerComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); |