Skip to content

Commit c2441cb

Browse files
committed
fix: update geopoint data in tests
Signed-off-by: dhmlau <dhmlau@ca.ibm.com>
1 parent 4f40a4b commit c2441cb

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

examples/todo/src/__tests__/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export function givenTodo(todo?: Partial<Todo>) {
4848

4949
export const aLocation = {
5050
address: '1 New Orchard Road, Armonk, 10504',
51-
geopoint: <GeoPoint>{y: 41.1097283577486, x: -73.7246203180502},
51+
geopoint: <GeoPoint>{y: 41.109728357749, x: -73.72462031805},
5252
get geostring() {
5353
return `${this.geopoint.y},${this.geopoint.x}`;
5454
},

examples/webpack/src/__tests__/integration/bundle-web.integration.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ skipIf<[(this: Suite) => void], void>(
4040
let html: string;
4141
before(async function (this: Mocha.Context) {
4242
this.timeout(15000);
43-
browser = await puppeteer.launch({headless: 'new'});
43+
browser = await puppeteer.launch({
44+
headless: 'new',
45+
args: ['--no-sandbox'],
46+
});
4447
const page = await browser.newPage();
4548
await page.goto(
4649
url

packages/cli/.yo-rc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,12 @@
132132
"name": "loopbackBuild",
133133
"hide": false
134134
},
135+
"editorconfig": {
136+
"type": "Boolean",
137+
"description": "Use preconfigured EditorConfig settings",
138+
"name": "editorconfig",
139+
"hide": false
140+
},
135141
"vscode": {
136142
"type": "Boolean",
137143
"description": "Use preconfigured VSCode settings",
@@ -257,6 +263,12 @@
257263
"name": "loopbackBuild",
258264
"hide": false
259265
},
266+
"editorconfig": {
267+
"type": "Boolean",
268+
"description": "Use preconfigured EditorConfig settings",
269+
"name": "editorconfig",
270+
"hide": false
271+
},
260272
"vscode": {
261273
"type": "Boolean",
262274
"description": "Use preconfigured VSCode settings",

0 commit comments

Comments
 (0)