mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-31 06:11:03 -08:00
b1a40a231b
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
28 lines
811 B
TypeScript
28 lines
811 B
TypeScript
import { mkdirSync, mkdtempSync, writeFileSync } from 'fs';
|
|
import { tmpdir } from 'os';
|
|
import { join } from 'path';
|
|
|
|
process.env.N8N_ENCRYPTION_KEY = 'test_key';
|
|
|
|
const baseDir = join(tmpdir(), 'n8n-tests/');
|
|
mkdirSync(baseDir, { recursive: true });
|
|
|
|
const testDir = mkdtempSync(baseDir);
|
|
mkdirSync(join(testDir, '.n8n'));
|
|
process.env.N8N_USER_FOLDER = testDir;
|
|
process.env.N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS = 'false';
|
|
|
|
writeFileSync(
|
|
join(testDir, '.n8n/config'),
|
|
JSON.stringify({ encryptionKey: 'test_key', instanceId: '123' }),
|
|
{
|
|
encoding: 'utf-8',
|
|
mode: 0o600,
|
|
},
|
|
);
|
|
|
|
// This is needed to ensure that `process.env` overrides in tests
|
|
// are set before any of the config classes are instantiated.
|
|
// TODO: delete this after we are done migrating everything to config classes
|
|
import '@/config';
|