Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Jwt/test/Jwt.node.test.ts
कारतोफ्फेलस्क्रिप्ट™ 979f9e6327 refactor: Overhaul nodes-testing setup - Part 3 (no-changelog) (#14967)
2025-04-29 17:42:21 +02:00

14 lines
265 B
TypeScript

import { NodeTestHarness } from '@nodes-testing/node-test-harness';
const credentials = {
jwtAuth: {
keyType: 'passphrase',
secret: 'baz',
algorithm: 'HS256',
},
};
describe('Test Jwt Node', () => {
new NodeTestHarness().setupTests({ credentials });
});