added child education

worklist-umar-Q3
umasoodch 4 years ago
parent b5b37abd73
commit 14fb8f7ba7

@ -0,0 +1,27 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AddCeiComponent } from './add-cei.component';
describe('AddCeiComponent', () => {
let component: AddCeiComponent;
let fixture: ComponentFixture<AddCeiComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AddCeiComponent ],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AddCeiComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-add-cei',
templateUrl: './add-cei.component.html',
styleUrls: ['./add-cei.component.scss'],
})
export class AddCeiComponent implements OnInit {
constructor() { }
ngOnInit() {}
}

@ -0,0 +1,27 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CeiHomepageComponent } from './cei-homepage.component';
describe('CeiHomepageComponent', () => {
let component: CeiHomepageComponent;
let fixture: ComponentFixture<CeiHomepageComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CeiHomepageComponent ],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CeiHomepageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-cei-homepage',
templateUrl: './cei-homepage.component.html',
styleUrls: ['./cei-homepage.component.scss'],
})
export class CeiHomepageComponent implements OnInit {
constructor() { }
ngOnInit() {}
}

@ -0,0 +1,27 @@
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ConfirmAddCeiComponent } from './confirm-add-cei.component';
describe('ConfirmAddCeiComponent', () => {
let component: ConfirmAddCeiComponent;
let fixture: ComponentFixture<ConfirmAddCeiComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ConfirmAddCeiComponent ],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ConfirmAddCeiComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-confirm-add-cei',
templateUrl: './confirm-add-cei.component.html',
styleUrls: ['./confirm-add-cei.component.scss'],
})
export class ConfirmAddCeiComponent implements OnInit {
constructor() { }
ngOnInit() {}
}

@ -27,8 +27,8 @@ export class ConnectorService {
public static retryTimes = 0;
public static timeOut = 120 * 1000;
public static host = 'https://uat.hmgwebservices.com/';
// public static host = 'https://hmgwebservices.com/';
// public static host = 'https://uat.hmgwebservices.com/';
public static host = 'https://hmgwebservices.com/';
constructor(public httpClient: HttpClient,
public cs: CommonService,

Loading…
Cancel
Save