Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/SendGrid/test/SendGrid.node.test.ts

21 lines
522 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
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'],
});
});
});