mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
9a1cc56806
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
39 lines
925 B
TypeScript
39 lines
925 B
TypeScript
import type { INodeTypeData } from 'n8n-workflow';
|
|
|
|
/**
|
|
* Ensure all pending promises settle. The promise's `resolve` is placed in
|
|
* the macrotask queue and so called at the next iteration of the event loop
|
|
* after all promises in the microtask queue have settled first.
|
|
*/
|
|
export const flushPromises = async () => await new Promise(setImmediate);
|
|
|
|
export function mockNodeTypesData(
|
|
nodeNames: string[],
|
|
options?: {
|
|
addTrigger?: boolean;
|
|
},
|
|
) {
|
|
return nodeNames.reduce<INodeTypeData>((acc, nodeName) => {
|
|
return (
|
|
(acc[`n8n-nodes-base.${nodeName}`] = {
|
|
sourcePath: '',
|
|
type: {
|
|
description: {
|
|
displayName: nodeName,
|
|
name: nodeName,
|
|
group: [],
|
|
description: '',
|
|
version: 1,
|
|
defaults: {},
|
|
inputs: [],
|
|
outputs: [],
|
|
properties: [],
|
|
},
|
|
trigger: options?.addTrigger ? async () => undefined : undefined,
|
|
},
|
|
}),
|
|
acc
|
|
);
|
|
}, {});
|
|
}
|