From 14304073b8f781d6dcac2da16b97cdedbc1cdd32 Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Fri, 7 Jun 2019 17:39:39 -0400 Subject: [PATCH] Dont fail on not being able to unlink --- __tests__/installer.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__tests__/installer.test.ts b/__tests__/installer.test.ts index c6e702ea..b5b3899c 100644 --- a/__tests__/installer.test.ts +++ b/__tests__/installer.test.ts @@ -40,7 +40,7 @@ describe('installer tests', () => { try { await io.rmRF(toolDir); await io.rmRF(tempDir); - } finally { + } catch { console.log('Failed to remove test directories'); } }, 100000);