mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
14 lines
306 B
TypeScript
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));
|