From a32d04f00eb4299fdcec446e76201525c49f238f Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Fri, 27 Dec 2024 13:42:52 +0100 Subject: [PATCH] cherry-pick(1.47): remove old CDNs (#34102) --- packages/playwright-core/src/server/registry/index.ts | 2 -- tests/installation/playwright-cdn.spec.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/packages/playwright-core/src/server/registry/index.ts b/packages/playwright-core/src/server/registry/index.ts index 6069b765f6..0a8f122a4a 100644 --- a/packages/playwright-core/src/server/registry/index.ts +++ b/packages/playwright-core/src/server/registry/index.ts @@ -38,8 +38,6 @@ const BIN_PATH = path.join(__dirname, '..', '..', '..', 'bin'); const PLAYWRIGHT_CDN_MIRRORS = [ 'https://playwright.azureedge.net', - 'https://playwright-akamai.azureedge.net', - 'https://playwright-verizon.azureedge.net', ]; if (process.env.PW_TEST_CDN_THAT_SHOULD_WORK) { diff --git a/tests/installation/playwright-cdn.spec.ts b/tests/installation/playwright-cdn.spec.ts index e1e438ecdc..3ae83a07b7 100644 --- a/tests/installation/playwright-cdn.spec.ts +++ b/tests/installation/playwright-cdn.spec.ts @@ -20,8 +20,6 @@ import type { AddressInfo } from 'net'; const CDNS = [ 'https://playwright.azureedge.net', - 'https://playwright-akamai.azureedge.net', - 'https://playwright-verizon.azureedge.net', ]; const DL_STAT_BLOCK = /^.*from url: (.*)$\n^.*to location: (.*)$\n^.*response status code: (.*)$\n^.*total bytes: (\d+)$\n^.*download complete, size: (\d+)$\n^.*SUCCESS downloading (\w+) .*$/gm;