Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Jwt/test/Jwt.node.test.ts
कारतोफ्फेलस्क्रिप्ट™ 91069f057e refactor: Overhaul nodes-testing setup - Part 2 (no-changelog) (#14873)
2025-04-24 17:37:26 +02:00

14 lines
306 B
TypeScript

import { testWorkflows, getWorkflowFilenames } from '@test/nodes/Helpers';
const credentials = {
jwtAuth: {
keyType: 'passphrase',
secret: 'baz',
algorithm: 'HS256',
},
};
const workflows = getWorkflowFilenames(__dirname);
describe('Test Jwt Node', () => testWorkflows(workflows, credentials));