From 04fb328850f6323171e14a413a8e24d4b0a36ee7 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Wed, 6 May 2026 17:37:41 +0200 Subject: [PATCH] test: exclude external map tiles from smoke test to fix pipeline --- package.json | 2 +- scripts/smoke.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d7d6c51f..06d30c5e 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "prepare": "husky", "preinstall": "npx only-allow pnpm" }, - "version": "2.3.22-rc.17", + "version": "2.3.22-rc.18", "pnpm": { "onlyBuiltDependencies": [ "@parcel/watcher", diff --git a/scripts/smoke.ts b/scripts/smoke.ts index 7adac155..5279c6ba 100644 --- a/scripts/smoke.ts +++ b/scripts/smoke.ts @@ -42,6 +42,7 @@ async function run() { const broken: string[] = []; await Promise.all( urls.map(async (url) => { + if (url.includes('openstreetmap.org') || url.includes('unpkg.com')) return; try { const res = await fetch(url, { method: 'HEAD' }); if (res.status >= 400) {