From 6a06a99e461f4ecb4151966579ccda5fb835d774 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Tue, 9 Apr 2019 13:05:36 -0700 Subject: [PATCH] Change pfs.rimraf call in insightsutils test (#4921) --- src/sqltest/parts/insights/insightsUtils.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sqltest/parts/insights/insightsUtils.test.ts b/src/sqltest/parts/insights/insightsUtils.test.ts index 6260c2f811..27b47545c7 100644 --- a/src/sqltest/parts/insights/insightsUtils.test.ts +++ b/src/sqltest/parts/insights/insightsUtils.test.ts @@ -173,6 +173,6 @@ suite('Insights Utils tests', function () { suiteTeardown(() => { // Clean up our test files - return pfs.rimraf(testRootPath); + return pfs.rimraf(testRootPath, pfs.RimRafMode.MOVE); }); });