mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
14 lines
265 B
TypeScript
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 });
|
|
});
|