mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
a599eab231
feat: unify file locations
18 lines
513 B
JavaScript
18 lines
513 B
JavaScript
const upath = require('upath');
|
|
const os = require('os');
|
|
|
|
jest.mock('gh-got');
|
|
jest.mock('gl-got');
|
|
|
|
const cache = require('../lib/workers/global/cache');
|
|
|
|
global.platform = jest.genMockFromModule('../lib/platform/github');
|
|
global.logger = require('./logger/_fixtures');
|
|
|
|
global.renovateUsername = 'renovate-testing';
|
|
global.repoCache = {};
|
|
|
|
const tmpDir = process.env.RENOVATE_TMPDIR || process.env.TMPDIR || os.tmpdir();
|
|
const cacheDir = upath.join(tmpDir, './renovate/cache/renovate');
|
|
|
|
cache.init(cacheDir);
|