This commit is contained in:
Kirill Chernyshov 2019-10-07 14:57:59 +02:00
parent e5ae1d62fd
commit 34aa397a4e
No known key found for this signature in database
GPG Key ID: 425B3AB78FBCFBDB
2 changed files with 4 additions and 4 deletions

View File

@ -8,8 +8,8 @@ import path = require('path');
const toolDir = path.join(__dirname, 'runner', 'tools', 'leiningen');
const tempDir = path.join(__dirname, 'runner', 'temp', 'leiningen');
process.env['RUNNER_TOOL_CACHE'] = toolDir;
process.env['RUNNER_TEMP'] = tempDir;
process.env['RUNNER_TOOL_CACHE'] = path.join(__dirname, 'runner', 'tools');
process.env['RUNNER_TEMP'] = path.join(__dirname, 'runner', 'temp');
import * as leiningen from '../src/leiningen';
describe('leiningen tests', () => {

View File

@ -7,8 +7,8 @@ import path = require('path');
const toolDir = path.join(__dirname, 'runner', 'tools', 'tdeps');
const tempDir = path.join(__dirname, 'runner', 'temp', 'tdeps');
process.env['RUNNER_TOOL_CACHE'] = toolDir;
process.env['RUNNER_TEMP'] = tempDir;
process.env['RUNNER_TOOL_CACHE'] = path.join(__dirname, 'runner', 'tools');
process.env['RUNNER_TEMP'] = path.join(__dirname, 'runner', 'temp');
import * as tdeps from '../src/tdeps';
describe('tdeps tests', () => {