From 68fd63a69eeccc7e207d5796e4bf34cb3c843990 Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Thu, 24 Apr 2025 10:04:34 +0200 Subject: [PATCH] fix jest config for integration tests Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- jest.config.itg.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/jest.config.itg.ts b/jest.config.itg.ts index 56f56e0..75eb102 100644 --- a/jest.config.itg.ts +++ b/jest.config.itg.ts @@ -14,20 +14,6 @@ * limitations under the License. */ -import fs from 'fs'; -import os from 'os'; -import path from 'path'; - -const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'docker-actions-toolkit-')); - -process.env = Object.assign({}, process.env, { - TEMP: tmpDir, - RUNNER_TEMP: path.join(tmpDir, 'runner-temp'), - RUNNER_TOOL_CACHE: path.join(tmpDir, 'runner-tool-cache') -}) as { - [key: string]: string; -}; - module.exports = { testEnvironment: 'node', moduleFileExtensions: ['js', 'ts'],