mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-02 17:57:06 +02: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 });
|
|
});
|