Skip to content
Snippets Groups Projects
Commit 721573ac authored by Jérémie BRISON's avatar Jérémie BRISON
Browse files
parents d90c9ce8 47665178
No related branches found
No related tags found
2 merge requests!11Recette,!5Map poc
<div fxLayout="row">
<app-structure-list [structureList]="structures" class="left-pane" fxFlex="30%"></app-structure-list>
<app-map fxFlex="70%" [structures]="structures"></app-map>
<app-structure-list [structureList]="structures" class="left-pane"></app-structure-list>
<app-map [structures]="structures" fxFlex="100"></app-map>
</div>
.left-pane {
padding: 0 25px;
width: 590px;
min-width: 590px;
}
import { TestBed } from '@angular/core/testing';
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
import { Address } from '../models/address.model';
import { GeojsonService } from './geojson.service';
......@@ -27,7 +26,6 @@ describe('GeojsonService', () => {
await new Promise((resolve) => {
service.getAddress(26061).subscribe(
(val) => {
console.log(val);
expect(val.zipcode).toEqual('69800');
expect(val.text).toEqual('13ème Rue Cité Berliet');
resolve();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment