diff --git a/src/map/utils/read.ts b/src/map/utils/read.ts index efa0801..779d8b4 100644 --- a/src/map/utils/read.ts +++ b/src/map/utils/read.ts @@ -2,7 +2,8 @@ import { parsePB, tileTypes, type TileType } from './parsePB'; import { parseDMS } from './parseDMS'; import { getMapZoom } from './zoom'; -export const nominatimQ: string = 'https://nominatim.openstreetmap.org/search/?limit=1&format=json&q='; +export const nominatimQ: string = + 'https://nominatim.openstreetmap.org/search/?limit=1&format=json&q='; const cidMatch: RegExp = /^0x[\da-f]+:0x[\da-f]+$/i; const dmsMatch: RegExp = /^\d{1,2}°\d{1,2}'\d{1,2}\.\d"(N|S) \d{1,2}°\d{1,2}'\d{1,2}\.\d"(E|W)$/i; diff --git a/test/bg/action.test.ts b/test/bg/action.test.ts index d866e1f..82ffe01 100644 --- a/test/bg/action.test.ts +++ b/test/bg/action.test.ts @@ -1,7 +1,5 @@ import { describe, it } from 'vitest'; describe.concurrent('', () => { - it('', ({ expect }) => { - - }); + it('', ({ expect }) => {}); }); diff --git a/test/bg/bg.test.ts b/test/bg/bg.test.ts index d866e1f..82ffe01 100644 --- a/test/bg/bg.test.ts +++ b/test/bg/bg.test.ts @@ -1,7 +1,5 @@ import { describe, it } from 'vitest'; describe.concurrent('', () => { - it('', ({ expect }) => { - - }); + it('', ({ expect }) => {}); }); diff --git a/test/bg/utils/storage.test.ts b/test/bg/utils/storage.test.ts index d866e1f..82ffe01 100644 --- a/test/bg/utils/storage.test.ts +++ b/test/bg/utils/storage.test.ts @@ -1,7 +1,5 @@ import { describe, it } from 'vitest'; describe.concurrent('', () => { - it('', ({ expect }) => { - - }); + it('', ({ expect }) => {}); }); diff --git a/test/map/map.test.ts b/test/map/map.test.ts index d866e1f..82ffe01 100644 --- a/test/map/map.test.ts +++ b/test/map/map.test.ts @@ -1,7 +1,5 @@ import { describe, it } from 'vitest'; describe.concurrent('', () => { - it('', ({ expect }) => { - - }); + it('', ({ expect }) => {}); }); diff --git a/test/map/utils/zoom.test.ts b/test/map/utils/zoom.test.ts index da0277a..58b7fbe 100644 --- a/test/map/utils/zoom.test.ts +++ b/test/map/utils/zoom.test.ts @@ -16,9 +16,9 @@ describe.concurrent('', () => { expect(res).toBe(0); }); - it('specific zoom', ({expect}) => { + it('specific zoom', ({ expect }) => { const res = getMapZoom(1000); expect(res).toBe(18.5); - }) + }); });