Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Notion/test/node/v2/database/get.test.ts
कारतोफ्फेलस्क्रिप्ट™ 979f9e6327 refactor: Overhaul nodes-testing setup - Part 3 (no-changelog) (#14967)
2025-04-29 17:42:21 +02:00

76 lines
1.5 KiB
TypeScript

import { NodeTestHarness } from '@nodes-testing/node-test-harness';
import nock from 'nock';
const API_RESPONSE = {
object: 'database',
id: '138fb9cb-4cf0-804c-8663-d8ecdd5e692f',
cover: null,
icon: null,
created_time: '2024-11-08T07:59:00.000Z',
created_by: {
object: 'user',
id: '88f72c1a-07ed-4bae-9fa0-231365d813d9',
},
last_edited_by: {
object: 'user',
id: '88f72c1a-07ed-4bae-9fa0-231365d813d9',
},
last_edited_time: '2024-11-08T07:59:00.000Z',
title: [
{
type: 'text',
text: {
content: 'TEST_DB',
link: null,
},
annotations: {
bold: false,
italic: false,
strikethrough: false,
underline: false,
code: false,
color: 'default',
},
plain_text: 'TEST_DB',
href: null,
},
],
description: [],
is_inline: false,
properties: {
Tags: {
id: '%40~Tp',
name: 'Tags',
type: 'multi_select',
multi_select: {
options: [],
},
},
Name: {
id: 'title',
name: 'Name',
type: 'title',
title: {},
},
},
parent: {
type: 'page_id',
page_id: 'cc3d2b3c-f31a-4773-ab39-17a60c54567a',
},
url: 'https://www.notion.so/138fb9cb4cf0804c8663d8ecdd5e692f',
public_url: null,
archived: false,
in_trash: false,
request_id: 'd22a9046-be0d-4ef5-b551-8691da552d47',
};
describe('Test NotionV2, database => get', () => {
nock('https://api.notion.com')
.get('/v1/databases/138fb9cb-4cf0-804c-8663-d8ecdd5e692f')
.reply(200, API_RESPONSE);
new NodeTestHarness().setupTests({
workflowFiles: ['get.workflow.json'],
});
});