From 51704ac849b628d6592c0f6003609f3556ea7ba4 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Wed, 11 May 2022 16:56:12 -0700 Subject: [PATCH] test: test the installations with a space --- src/utils/tests/test-helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/tests/test-helpers.ts b/src/utils/tests/test-helpers.ts index d1b6cfba..cbed96eb 100644 --- a/src/utils/tests/test-helpers.ts +++ b/src/utils/tests/test-helpers.ts @@ -7,7 +7,7 @@ import spawn from "cross-spawn" import { existsSync } from "fs" export async function setupTmpDir(testName: string) { - const tempDirectory = path.join(tmpdir(), "setup-cpp", testName) + const tempDirectory = path.join(tmpdir(), "setup cpp temp", testName) try { await io.rmRF(tempDirectory) await io.mkdirP(tempDirectory)