From 9e36f4583d5917d3328b6811687f943f11abd0f3 Mon Sep 17 00:00:00 2001 From: Tom Plant Date: Sun, 16 Jun 2024 05:20:31 +0000 Subject: [PATCH] remove cleanup Signed-off-by: Tom Plant --- test/src/helpers/packTester.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/src/helpers/packTester.ts b/test/src/helpers/packTester.ts index 547d5fac4a7..25b6c713067 100644 --- a/test/src/helpers/packTester.ts +++ b/test/src/helpers/packTester.ts @@ -156,8 +156,8 @@ export async function assertPack(fixtureName: string, packagerOptions: PackagerO tmpDir, }) } - })() - // (): any => (tmpDir === checkOptions.tmpDir ? null : tmpDir.cleanup()) + })(), + (): any => (tmpDir === checkOptions.tmpDir ? null : null) ) }