mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
22 lines
591 B
TypeScript
22 lines
591 B
TypeScript
/* eslint-disable n8n-nodes-base/node-param-display-name-miscased */
|
|
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'],
|
|
});
|
|
});
|
|
});
|