n8n/packages/nodes-base/nodes/N8n/test/node/N8n.test.ts
Tomi Turtiainen 9a1cc56806
fix: Set '@typescript-eslint/return-await' rule to 'always' for node code (no-changelog) (#8363)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2024-01-17 17:08:50 +02:00

37 lines
1.1 KiB
TypeScript

import nock from 'nock';
import type { INodeTypes } from 'n8n-workflow';
import { setup, workflowToTests, getWorkflowFilenames } from '@test/nodes/Helpers';
import { executeWorkflow } from '@test/nodes/ExecuteWorkflow';
import type { WorkflowTestData } from '@test/nodes/types';
describe('Test N8n Node, expect base_url to be received from credentials', () => {
const workflows = getWorkflowFilenames(__dirname);
const tests = workflowToTests(workflows);
beforeAll(() => {
nock.disableNetConnect();
//base url is set in fake credentials map packages/nodes-base/test/nodes/FakeCredentialsMap.ts
const baseUrl = 'https://test.app.n8n.cloud/api/v1';
nock(baseUrl).get('/workflows?tags=n8n-test').reply(200, {});
});
afterAll(() => {
nock.restore();
});
const nodeTypes = setup(tests);
const testNode = async (testData: WorkflowTestData, types: INodeTypes) => {
const { result } = await executeWorkflow(testData, types);
expect(result.finished).toEqual(true);
};
for (const testData of tests) {
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});