add family
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
<div>
|
||||
<app-familiy-nokids></app-familiy-nokids>
|
||||
<app-familiy-notask></app-familiy-notask>
|
||||
<app-familiy-addfamily></app-familiy-addfamily>
|
||||
</div>
|
||||
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyDashComponent } from './familiy-dash.component';
|
||||
//import { FamiliyNokidsComponent } from '../familycards/familiy-nokids/familiy-nokids.component';
|
||||
|
||||
describe('FamiliyDashComponent', () => {
|
||||
let component: FamiliyDashComponent;
|
||||
let fixture: ComponentFixture<FamiliyDashComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyDashComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyDashComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-dash',
|
||||
templateUrl: './familiy-dash.component.html',
|
||||
styleUrls: ['./familiy-dash.component.scss'],
|
||||
})
|
||||
export class FamiliyDashComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
familiy-addfamily works!
|
||||
</p>
|
||||
@@ -0,0 +1,24 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyAddfamilyComponent } from './familiy-addfamily.component';
|
||||
|
||||
describe('FamiliyAddfamilyComponent', () => {
|
||||
let component: FamiliyAddfamilyComponent;
|
||||
let fixture: ComponentFixture<FamiliyAddfamilyComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyAddfamilyComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyAddfamilyComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-addfamily',
|
||||
templateUrl: './familiy-addfamily.component.html',
|
||||
styleUrls: ['./familiy-addfamily.component.scss'],
|
||||
})
|
||||
export class FamiliyAddfamilyComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
familiy-nokids works!
|
||||
</p>
|
||||
@@ -0,0 +1,24 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyNokidsComponent } from './familiy-nokids.component';
|
||||
|
||||
describe('FamiliyNokidsComponent', () => {
|
||||
let component: FamiliyNokidsComponent;
|
||||
let fixture: ComponentFixture<FamiliyNokidsComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyNokidsComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyNokidsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-nokids',
|
||||
templateUrl: './familiy-nokids.component.html',
|
||||
styleUrls: ['./familiy-nokids.component.scss'],
|
||||
})
|
||||
export class FamiliyNokidsComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
familiy-notask works!
|
||||
</p>
|
||||
@@ -0,0 +1,24 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyNotaskComponent } from './familiy-notask.component';
|
||||
|
||||
describe('FamiliyNotaskComponent', () => {
|
||||
let component: FamiliyNotaskComponent;
|
||||
let fixture: ComponentFixture<FamiliyNotaskComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyNotaskComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyNotaskComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-notask',
|
||||
templateUrl: './familiy-notask.component.html',
|
||||
styleUrls: ['./familiy-notask.component.scss'],
|
||||
})
|
||||
export class FamiliyNotaskComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user