From e5ae43e30821ce2b3caefef328318e46c2fa10f2 Mon Sep 17 00:00:00 2001 From: Evgeny Kochetkov Date: Mon, 26 Nov 2018 19:39:43 +0300 Subject: [PATCH] test(xod-cli): clean up working directory between install:arch tests --- packages/xod-cli/test-func/installArch.spec.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packages/xod-cli/test-func/installArch.spec.js b/packages/xod-cli/test-func/installArch.spec.js index bcc0abc9..42b97527 100644 --- a/packages/xod-cli/test-func/installArch.spec.js +++ b/packages/xod-cli/test-func/installArch.spec.js @@ -198,6 +198,10 @@ describe('xodc install:arch', () => { process.exit = exit; }); + after(() => { + fs.removeSync(wd); + }); + its(wd); }); @@ -219,6 +223,10 @@ describe('xodc install:arch', () => { process.exit = exit; }); + after(() => { + fs.removeSync(wd); + }); + its(wd); }); });