initialisation de l'application
This commit is contained in:
parent
b9f9f5fb3f
commit
6f9112ee91
118 changed files with 1221 additions and 492 deletions
1
src/app/components/avatar/avatar.component.html
Normal file
1
src/app/components/avatar/avatar.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>avatar works!</p>
|
||||
0
src/app/components/avatar/avatar.component.scss
Normal file
0
src/app/components/avatar/avatar.component.scss
Normal file
25
src/app/components/avatar/avatar.component.spec.ts
Normal file
25
src/app/components/avatar/avatar.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { AvatarComponent } from './avatar.component';
|
||||
|
||||
describe('AvatarComponent', () => {
|
||||
let component: AvatarComponent;
|
||||
let fixture: ComponentFixture<AvatarComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ AvatarComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(AvatarComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/avatar/avatar.component.ts
Normal file
15
src/app/components/avatar/avatar.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-avatar',
|
||||
templateUrl: './avatar.component.html',
|
||||
styleUrls: ['./avatar.component.scss']
|
||||
})
|
||||
export class AvatarComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/calendrier/calendrier.component.html
Normal file
1
src/app/components/calendrier/calendrier.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>calendrier works!</p>
|
||||
0
src/app/components/calendrier/calendrier.component.scss
Normal file
0
src/app/components/calendrier/calendrier.component.scss
Normal file
25
src/app/components/calendrier/calendrier.component.spec.ts
Normal file
25
src/app/components/calendrier/calendrier.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CalendrierComponent } from './calendrier.component';
|
||||
|
||||
describe('CalendrierComponent', () => {
|
||||
let component: CalendrierComponent;
|
||||
let fixture: ComponentFixture<CalendrierComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ CalendrierComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(CalendrierComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/calendrier/calendrier.component.ts
Normal file
15
src/app/components/calendrier/calendrier.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-calendrier',
|
||||
templateUrl: './calendrier.component.html',
|
||||
styleUrls: ['./calendrier.component.scss']
|
||||
})
|
||||
export class CalendrierComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
<p>card-member works!</p>
|
||||
25
src/app/components/card-member/card-member.component.spec.ts
Normal file
25
src/app/components/card-member/card-member.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CardMemberComponent } from './card-member.component';
|
||||
|
||||
describe('CardMemberComponent', () => {
|
||||
let component: CardMemberComponent;
|
||||
let fixture: ComponentFixture<CardMemberComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ CardMemberComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(CardMemberComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/card-member/card-member.component.ts
Normal file
15
src/app/components/card-member/card-member.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-card-member',
|
||||
templateUrl: './card-member.component.html',
|
||||
styleUrls: ['./card-member.component.scss']
|
||||
})
|
||||
export class CardMemberComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/card-menu/card-menu.component.html
Normal file
1
src/app/components/card-menu/card-menu.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>card-menu works!</p>
|
||||
0
src/app/components/card-menu/card-menu.component.scss
Normal file
0
src/app/components/card-menu/card-menu.component.scss
Normal file
25
src/app/components/card-menu/card-menu.component.spec.ts
Normal file
25
src/app/components/card-menu/card-menu.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CardMenuComponent } from './card-menu.component';
|
||||
|
||||
describe('CardMenuComponent', () => {
|
||||
let component: CardMenuComponent;
|
||||
let fixture: ComponentFixture<CardMenuComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ CardMenuComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(CardMenuComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/card-menu/card-menu.component.ts
Normal file
15
src/app/components/card-menu/card-menu.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-card-menu',
|
||||
templateUrl: './card-menu.component.html',
|
||||
styleUrls: ['./card-menu.component.scss']
|
||||
})
|
||||
export class CardMenuComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/creneau/creneau.component.html
Normal file
1
src/app/components/creneau/creneau.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>creneau works!</p>
|
||||
0
src/app/components/creneau/creneau.component.scss
Normal file
0
src/app/components/creneau/creneau.component.scss
Normal file
25
src/app/components/creneau/creneau.component.spec.ts
Normal file
25
src/app/components/creneau/creneau.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CreneauComponent } from './creneau.component';
|
||||
|
||||
describe('CreneauComponent', () => {
|
||||
let component: CreneauComponent;
|
||||
let fixture: ComponentFixture<CreneauComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ CreneauComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(CreneauComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/creneau/creneau.component.ts
Normal file
15
src/app/components/creneau/creneau.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-creneau',
|
||||
templateUrl: './creneau.component.html',
|
||||
styleUrls: ['./creneau.component.scss']
|
||||
})
|
||||
export class CreneauComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
<p>fiche-contact works!</p>
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { FicheContactComponent } from './fiche-contact.component';
|
||||
|
||||
describe('FicheContactComponent', () => {
|
||||
let component: FicheContactComponent;
|
||||
let fixture: ComponentFixture<FicheContactComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ FicheContactComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(FicheContactComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/fiche-contact/fiche-contact.component.ts
Normal file
15
src/app/components/fiche-contact/fiche-contact.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-fiche-contact',
|
||||
templateUrl: './fiche-contact.component.html',
|
||||
styleUrls: ['./fiche-contact.component.scss']
|
||||
})
|
||||
export class FicheContactComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/header/header.component.html
Normal file
1
src/app/components/header/header.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>header works!</p>
|
||||
0
src/app/components/header/header.component.scss
Normal file
0
src/app/components/header/header.component.scss
Normal file
25
src/app/components/header/header.component.spec.ts
Normal file
25
src/app/components/header/header.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { HeaderComponent } from './header.component';
|
||||
|
||||
describe('HeaderComponent', () => {
|
||||
let component: HeaderComponent;
|
||||
let fixture: ComponentFixture<HeaderComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ HeaderComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(HeaderComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/header/header.component.ts
Normal file
15
src/app/components/header/header.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-header',
|
||||
templateUrl: './header.component.html',
|
||||
styleUrls: ['./header.component.scss']
|
||||
})
|
||||
export class HeaderComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/humeur/humeur.component.html
Normal file
1
src/app/components/humeur/humeur.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>humeur works!</p>
|
||||
0
src/app/components/humeur/humeur.component.scss
Normal file
0
src/app/components/humeur/humeur.component.scss
Normal file
25
src/app/components/humeur/humeur.component.spec.ts
Normal file
25
src/app/components/humeur/humeur.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { HumeurComponent } from './humeur.component';
|
||||
|
||||
describe('HumeurComponent', () => {
|
||||
let component: HumeurComponent;
|
||||
let fixture: ComponentFixture<HumeurComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ HumeurComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(HumeurComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/humeur/humeur.component.ts
Normal file
15
src/app/components/humeur/humeur.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-humeur',
|
||||
templateUrl: './humeur.component.html',
|
||||
styleUrls: ['./humeur.component.scss']
|
||||
})
|
||||
export class HumeurComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/meteo/meteo.component.html
Normal file
1
src/app/components/meteo/meteo.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>meteo works!</p>
|
||||
0
src/app/components/meteo/meteo.component.scss
Normal file
0
src/app/components/meteo/meteo.component.scss
Normal file
25
src/app/components/meteo/meteo.component.spec.ts
Normal file
25
src/app/components/meteo/meteo.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MeteoComponent } from './meteo.component';
|
||||
|
||||
describe('MeteoComponent', () => {
|
||||
let component: MeteoComponent;
|
||||
let fixture: ComponentFixture<MeteoComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ MeteoComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(MeteoComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/meteo/meteo.component.ts
Normal file
15
src/app/components/meteo/meteo.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-meteo',
|
||||
templateUrl: './meteo.component.html',
|
||||
styleUrls: ['./meteo.component.scss']
|
||||
})
|
||||
export class MeteoComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/pagination/pagination.component.html
Normal file
1
src/app/components/pagination/pagination.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>pagination works!</p>
|
||||
0
src/app/components/pagination/pagination.component.scss
Normal file
0
src/app/components/pagination/pagination.component.scss
Normal file
25
src/app/components/pagination/pagination.component.spec.ts
Normal file
25
src/app/components/pagination/pagination.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { PaginationComponent } from './pagination.component';
|
||||
|
||||
describe('PaginationComponent', () => {
|
||||
let component: PaginationComponent;
|
||||
let fixture: ComponentFixture<PaginationComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ PaginationComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(PaginationComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/pagination/pagination.component.ts
Normal file
15
src/app/components/pagination/pagination.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-pagination',
|
||||
templateUrl: './pagination.component.html',
|
||||
styleUrls: ['./pagination.component.scss']
|
||||
})
|
||||
export class PaginationComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/side-bar/side-bar.component.html
Normal file
1
src/app/components/side-bar/side-bar.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>side-bar works!</p>
|
||||
0
src/app/components/side-bar/side-bar.component.scss
Normal file
0
src/app/components/side-bar/side-bar.component.scss
Normal file
25
src/app/components/side-bar/side-bar.component.spec.ts
Normal file
25
src/app/components/side-bar/side-bar.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { SideBarComponent } from './side-bar.component';
|
||||
|
||||
describe('SideBarComponent', () => {
|
||||
let component: SideBarComponent;
|
||||
let fixture: ComponentFixture<SideBarComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ SideBarComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(SideBarComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/side-bar/side-bar.component.ts
Normal file
15
src/app/components/side-bar/side-bar.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-side-bar',
|
||||
templateUrl: './side-bar.component.html',
|
||||
styleUrls: ['./side-bar.component.scss']
|
||||
})
|
||||
export class SideBarComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/signin/signin.component.html
Normal file
1
src/app/components/signin/signin.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>signin works!</p>
|
||||
0
src/app/components/signin/signin.component.scss
Normal file
0
src/app/components/signin/signin.component.scss
Normal file
25
src/app/components/signin/signin.component.spec.ts
Normal file
25
src/app/components/signin/signin.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { SigninComponent } from './signin.component';
|
||||
|
||||
describe('SigninComponent', () => {
|
||||
let component: SigninComponent;
|
||||
let fixture: ComponentFixture<SigninComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ SigninComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(SigninComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/signin/signin.component.ts
Normal file
15
src/app/components/signin/signin.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-signin',
|
||||
templateUrl: './signin.component.html',
|
||||
styleUrls: ['./signin.component.scss']
|
||||
})
|
||||
export class SigninComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/tache/tache.component.html
Normal file
1
src/app/components/tache/tache.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>tache works!</p>
|
||||
0
src/app/components/tache/tache.component.scss
Normal file
0
src/app/components/tache/tache.component.scss
Normal file
25
src/app/components/tache/tache.component.spec.ts
Normal file
25
src/app/components/tache/tache.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { TacheComponent } from './tache.component';
|
||||
|
||||
describe('TacheComponent', () => {
|
||||
let component: TacheComponent;
|
||||
let fixture: ComponentFixture<TacheComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ TacheComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(TacheComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/tache/tache.component.ts
Normal file
15
src/app/components/tache/tache.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-tache',
|
||||
templateUrl: './tache.component.html',
|
||||
styleUrls: ['./tache.component.scss']
|
||||
})
|
||||
export class TacheComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
1
src/app/components/to-do-list/to-do-list.component.html
Normal file
1
src/app/components/to-do-list/to-do-list.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>to-do-list works!</p>
|
||||
0
src/app/components/to-do-list/to-do-list.component.scss
Normal file
0
src/app/components/to-do-list/to-do-list.component.scss
Normal file
25
src/app/components/to-do-list/to-do-list.component.spec.ts
Normal file
25
src/app/components/to-do-list/to-do-list.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ToDoListComponent } from './to-do-list.component';
|
||||
|
||||
describe('ToDoListComponent', () => {
|
||||
let component: ToDoListComponent;
|
||||
let fixture: ComponentFixture<ToDoListComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ ToDoListComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(ToDoListComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/to-do-list/to-do-list.component.ts
Normal file
15
src/app/components/to-do-list/to-do-list.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-to-do-list',
|
||||
templateUrl: './to-do-list.component.html',
|
||||
styleUrls: ['./to-do-list.component.scss']
|
||||
})
|
||||
export class ToDoListComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue