n8n/packages/nodes-base/nodes/ReadPdf/test/ReadPDF.test.ts

12 lines
286 B
TypeScript
Raw Normal View History

import { getWorkflowFilenames, initBinaryDataManager, testWorkflows } from '@test/nodes/Helpers';
describe('Test Read PDF Node', () => {
const workflows = getWorkflowFilenames(__dirname);
beforeAll(async () => {
await initBinaryDataManager();
});
testWorkflows(workflows);
});