mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
21 lines
522 B
TypeScript
21 lines
522 B
TypeScript
import { NodeTestHarness } from '@nodes-testing/node-test-harness';
|
|
import nock from 'nock';
|
|
|
|
describe('Test SendGrid Node', () => {
|
|
describe('Mail', () => {
|
|
const sendgridNock = nock('https://api.sendgrid.com/v3')
|
|
.post(
|
|
'/mail/send',
|
|
(body: { reply_to_list?: [{ email: string }] }) =>
|
|
body?.reply_to_list?.[0]?.email === 'test-reply-to@n8n.io',
|
|
)
|
|
.reply(202);
|
|
|
|
afterAll(() => sendgridNock.done());
|
|
|
|
new NodeTestHarness().setupTests({
|
|
workflowFiles: ['mail.workflow.json'],
|
|
});
|
|
});
|
|
});
|