From c9348d36295c8365371c189839d641c82c18d09a Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Tue, 20 May 2025 12:17:00 -0700 Subject: [PATCH] test: do not remove apt-fast --- packages/setup-apt/__tests__/apt-fast.test.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/setup-apt/__tests__/apt-fast.test.ts b/packages/setup-apt/__tests__/apt-fast.test.ts index 99491f54..25abeca9 100644 --- a/packages/setup-apt/__tests__/apt-fast.test.ts +++ b/packages/setup-apt/__tests__/apt-fast.test.ts @@ -12,9 +12,4 @@ describe("setup-apt-fast", () => { const installInfo = await setupAptFast() await testBin("apt-fast", ["--version"], installInfo?.binDir) }) - - afterAll(() => { - // remove apt-fast to run the rest of the tests with apt-get - execRootSync("apt-get", ["remove", "-y", "apt-fast"]) - }) })