component admin

thierry
Tmadkaud 7 years ago
parent 975605bb38
commit c5d92c8c3c

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

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

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-demande-op-commercial',
templateUrl: './demande-op-commercial.component.html',
styleUrls: ['./demande-op-commercial.component.scss']
})
export class DemandeOpCommercialComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}

@ -1,20 +1,20 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AdminComponent } from './admin.component';
import { ListeOpCommercialComponent } from './liste-op-commercial.component';
describe('AdminComponent', () => {
let component: AdminComponent;
let fixture: ComponentFixture<AdminComponent>;
describe('ListeOpCommercialComponent', () => {
let component: ListeOpCommercialComponent;
let fixture: ComponentFixture<ListeOpCommercialComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AdminComponent ]
declarations: [ ListeOpCommercialComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AdminComponent);
fixture = TestBed.createComponent(ListeOpCommercialComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

@ -0,0 +1,15 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-liste-op-commercial',
templateUrl: './liste-op-commercial.component.html',
styleUrls: ['./liste-op-commercial.component.scss']
})
export class ListeOpCommercialComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
Loading…
Cancel
Save