aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/properties-assignment/declare-input/declare-input.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/ng2/pages/properties-assignment/declare-input/declare-input.component.spec.ts')
-rw-r--r--catalog-ui/src/app/ng2/pages/properties-assignment/declare-input/declare-input.component.spec.ts12
1 files changed, 10 insertions, 2 deletions
diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/declare-input/declare-input.component.spec.ts b/catalog-ui/src/app/ng2/pages/properties-assignment/declare-input/declare-input.component.spec.ts
index c3fa1f506f..96bf9ad2da 100644
--- a/catalog-ui/src/app/ng2/pages/properties-assignment/declare-input/declare-input.component.spec.ts
+++ b/catalog-ui/src/app/ng2/pages/properties-assignment/declare-input/declare-input.component.spec.ts
@@ -19,25 +19,33 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { DeclareInputComponent } from './declare-input.component';
+import {ModalService} from "../../../services/modal.service";
+import {DynamicComponentService} from "../../../services/dynamic-component.service";
describe('DeclareInputComponent', () => {
let component: DeclareInputComponent;
let fixture: ComponentFixture<DeclareInputComponent>;
+ let modalService: ModalService;
+ let dynamicComponentService: DynamicComponentService;
beforeEach(async(() => {
TestBed.configureTestingModule({
- declarations: [ DeclareInputComponent ]
+ declarations: [ DeclareInputComponent ],
+ providers: [ ModalService, DynamicComponentService]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(DeclareInputComponent);
+ modalService = TestBed.get(ModalService);
+ dynamicComponentService = TestBed.get(DynamicComponentService);
component = fixture.componentInstance;
- fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
+ expect(modalService).toBeTruthy();
+ expect(dynamicComponentService).toBeTruthy();
});
});