mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat(Linear Node): Add options to add a link and a comment to an issue (#13464)
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
import { NodeTestHarness } from '@nodes-testing/node-test-harness';
|
||||
import nock from 'nock';
|
||||
|
||||
import {
|
||||
addCommentRequest,
|
||||
addCommentWithParentRequest,
|
||||
addCommentLink,
|
||||
issueCreateRequest,
|
||||
getIssueRequest,
|
||||
getManyIssuesRequest,
|
||||
updateIssueRequest,
|
||||
deleteIssueRequest,
|
||||
} from './apiRequest';
|
||||
import {
|
||||
commentCreateResponse,
|
||||
commentCreateWithParentResponse,
|
||||
attachmentLinkURLResponse,
|
||||
issueCreateResponse,
|
||||
getIssueResponse,
|
||||
getManyIssueResponse,
|
||||
issueUpdateResponse,
|
||||
deleteIssueResponse,
|
||||
} from './apiResponses';
|
||||
|
||||
describe('Linear', () => {
|
||||
describe('Run Test Workflow', () => {
|
||||
beforeAll(() => {
|
||||
const mock = nock('https://api.linear.app');
|
||||
mock.post('/graphql', addCommentRequest).reply(200, commentCreateResponse);
|
||||
mock.post('/graphql', addCommentLink).reply(200, attachmentLinkURLResponse);
|
||||
mock
|
||||
.post('/graphql', addCommentWithParentRequest)
|
||||
.reply(200, commentCreateWithParentResponse);
|
||||
mock.post('/graphql', issueCreateRequest).reply(200, issueCreateResponse);
|
||||
mock.post('/graphql', getIssueRequest).reply(200, getIssueResponse);
|
||||
mock.post('/graphql', getManyIssuesRequest).reply(200, getManyIssueResponse);
|
||||
mock.post('/graphql', updateIssueRequest).reply(200, issueUpdateResponse);
|
||||
mock.post('/graphql', deleteIssueRequest).reply(200, deleteIssueResponse);
|
||||
});
|
||||
|
||||
new NodeTestHarness().setupTests();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user