mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
ci: Fix tests on Node 22 (#16730)
This commit is contained in:
@@ -51,14 +51,14 @@ export class ModuleRegistry {
|
|||||||
let modulesDir: string;
|
let modulesDir: string;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// docker
|
// docker + tests
|
||||||
const n8nPackagePath = require.resolve('n8n/package.json');
|
const n8nPackagePath = require.resolve('n8n/package.json');
|
||||||
const n8nRoot = path.dirname(n8nPackagePath);
|
const n8nRoot = path.dirname(n8nPackagePath);
|
||||||
modulesDir = path.join(n8nRoot, 'dist', 'modules');
|
const dir = process.env.NODE_ENV === 'test' ? 'src' : 'dist';
|
||||||
|
modulesDir = path.join(n8nRoot, dir, 'modules');
|
||||||
} catch {
|
} catch {
|
||||||
// local dev
|
// local dev
|
||||||
const dir = process.env.NODE_ENV === 'test' ? 'src' : 'dist';
|
modulesDir = path.resolve(__dirname, '../../../../cli/dist/modules');
|
||||||
modulesDir = path.resolve(__dirname, `../../../../cli/${dir}/modules`);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const moduleName of modules ?? this.eligibleModules) {
|
for (const moduleName of modules ?? this.eligibleModules) {
|
||||||
|
|||||||
Reference in New Issue
Block a user