mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
removes global mocking
This commit is contained in:
parent
b422e2d7aa
commit
51848490c4
|
@ -3,7 +3,6 @@ import {
|
||||||
type IExecuteFunctions,
|
type IExecuteFunctions,
|
||||||
type IDataObject,
|
type IDataObject,
|
||||||
NodeExecutionOutput,
|
NodeExecutionOutput,
|
||||||
type INodeExecutionData,
|
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
|
|
||||||
import { testWorkflows, getWorkflowFilenames } from '@test/nodes/Helpers';
|
import { testWorkflows, getWorkflowFilenames } from '@test/nodes/Helpers';
|
||||||
|
@ -12,19 +11,8 @@ import { Summarize } from '../Summarize.node';
|
||||||
import { checkIfFieldExists, type Aggregations } from '../utils';
|
import { checkIfFieldExists, type Aggregations } from '../utils';
|
||||||
|
|
||||||
const workflows = getWorkflowFilenames(__dirname);
|
const workflows = getWorkflowFilenames(__dirname);
|
||||||
describe('Test Summarize Node', () => testWorkflows(workflows));
|
|
||||||
|
|
||||||
jest.mock('n8n-workflow', () => ({
|
describe('Test Summarize Node', () => {
|
||||||
...jest.requireActual('n8n-workflow'),
|
|
||||||
NodeExecutionOutput: jest.fn().mockImplementation((data) => ({
|
|
||||||
data,
|
|
||||||
at(index: number): INodeExecutionData {
|
|
||||||
return (this.data as INodeExecutionData[])[index];
|
|
||||||
},
|
|
||||||
})),
|
|
||||||
}));
|
|
||||||
|
|
||||||
describe('Test Summarize Node, execute', () => {
|
|
||||||
testWorkflows(workflows);
|
testWorkflows(workflows);
|
||||||
|
|
||||||
let summarizeNode: Summarize;
|
let summarizeNode: Summarize;
|
||||||
|
@ -39,6 +27,7 @@ describe('Test Summarize Node, execute', () => {
|
||||||
} as unknown as IExecuteFunctions;
|
} as unknown as IExecuteFunctions;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// fails
|
||||||
it('should handle field not found with hints in version 1.1', async () => {
|
it('should handle field not found with hints in version 1.1', async () => {
|
||||||
const node = new Summarize();
|
const node = new Summarize();
|
||||||
const context = {
|
const context = {
|
||||||
|
|
Loading…
Reference in a new issue