From ce9745d63936d75fa6829be91e4fdb32516a8856 Mon Sep 17 00:00:00 2001 From: carsakiller Date: Mon, 1 Jul 2024 04:35:37 +0000 Subject: [PATCH] chore: remove unnecessary test route --- src/test/index.spec.ts | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/test/index.spec.ts b/src/test/index.spec.ts index c1a2828..f8101c8 100644 --- a/src/test/index.spec.ts +++ b/src/test/index.spec.ts @@ -10,24 +10,6 @@ test.describe("Home Page", () => { } ); - page.route( - "https://corsproxy.io/?https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery", - async (route) => { - const json = { - results: [ - { - extensions: [ - { - statistics: [{ statisticName: "install", value: 1500000 }], - }, - ], - }, - ], - }; - return route.fulfill({ json }); - } - ); - await page.goto("/", { waitUntil: "load", timeout: 3000 }); });