first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions
@@ -0,0 +1,90 @@
import { NodeTestHarness } from '@nodes-testing/node-test-harness';
import type { WorkflowTestData } from 'n8n-workflow';
import nock from 'nock';
describe('Test QuickChart Node', () => {
beforeEach(async () => {
nock('https://quickchart.io')
.persist()
.get(/chart.*/)
.reply(200, { success: true });
});
const testHarness = new NodeTestHarness();
const tests: WorkflowTestData[] = [
{
description: 'nodes/QuickChart/test/QuickChart.workflow.json',
input: {
workflowData: testHarness.readWorkflowJSON('QuickChart.workflow.json'),
},
output: {
nodeData: {
BarChart: [
[
{
json: {
chart: {
type: 'horizontalBar',
data: {
labels: ['Q1', 'Q2', 'Q3', 'Q4'],
datasets: [
{
label: 'Free Users',
data: [50, 60, 70, 180],
backgroundColor: '#121d6d77',
borderColor: '#e81010',
type: 'horizontalBar',
},
{
label: 'Paid Users',
data: [30, 10, 14, 25],
backgroundColor: '#0c0d0d96',
borderColor: '#e81010',
type: 'horizontalBar',
},
],
},
},
},
},
],
],
Doughnut: [
[
{
json: {
chart: {
type: 'doughnut',
data: {
labels: ['Q1', 'Q2', 'Q3', 'Q4'],
datasets: [
{
label: 'Free Users',
data: [50, 60, 70, 180],
backgroundColor: '#121d6d77',
borderColor: '#e81010',
type: 'doughnut',
},
{
label: 'Paid Users',
data: [30, 10, 14, 25],
backgroundColor: '#0c0d0d96',
borderColor: '#e81010',
type: 'doughnut',
},
],
},
},
},
},
],
],
},
},
},
];
for (const testData of tests) {
testHarness.setupTest(testData);
}
});
@@ -0,0 +1,147 @@
{
"meta": {
"instanceId": "104a4d08d8897b8bdeb38aaca515021075e0bd8544c983c2bb8c86e6a8e6081c"
},
"nodes": [
{
"parameters": {},
"id": "5ebe2f65-45db-4b22-bd2b-43993c20806f",
"name": "When clicking \"Execute Workflow\"",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [740, 320]
},
{
"parameters": {
"data": [
{
"label": "Free Users",
"labels": ["Berlin", "Paris", "Rome", "New York"],
"data": [50, 60, 70, 180],
"backgroundColor": "#121d6d77",
"chartType": "line"
},
{
"label": "Paid Users",
"labels": ["Berlin", "Paris", "Rome", "New York"],
"data": [30, 10, 14, 25],
"backgroundColor": "#0c0d0d96",
"chartType": "bar"
}
]
},
"id": "2e81f78c-41a5-48de-80c4-74abf163cd57",
"name": "Code",
"type": "n8n-nodes-testing.testData",
"typeVersion": 1,
"position": [980, 320]
},
{
"parameters": {
"labelsUi": {
"labelsValues": [
{
"label": "Q1"
},
{
"label": "Q2"
},
{
"label": "Q3"
},
{
"label": "Q4"
}
]
},
"data": "={{ $json.data }}",
"chartOptions": {
"backgroundColor": "#f93636ff",
"devicePixelRatio": 2,
"format": "png",
"height": 300,
"horizontal": true,
"width": 500
},
"datasetOptions": {
"backgroundColor": "={{ $json[\"backgroundColor\"] }}",
"borderColor": "#e81010",
"label": "={{ $json[\"label\"] }}"
}
},
"name": "BarChart",
"type": "n8n-nodes-base.quickChart",
"typeVersion": 1,
"position": [1220, 200],
"id": "9f6c9d1c-2732-473f-a357-5766265cd0db"
},
{
"parameters": {
"chartType": "doughnut",
"labelsUi": {
"labelsValues": [
{
"label": "Q1"
},
{
"label": "Q2"
},
{
"label": "Q3"
},
{
"label": "Q4"
}
]
},
"data": "={{ $json.data }}",
"chartOptions": {
"backgroundColor": "#f93636ff",
"devicePixelRatio": 2,
"format": "png",
"height": 300,
"width": 500
},
"datasetOptions": {
"backgroundColor": "={{ $json[\"backgroundColor\"] }}",
"borderColor": "#e81010",
"label": "={{ $json[\"label\"] }}"
}
},
"name": "Doughnut",
"type": "n8n-nodes-base.quickChart",
"typeVersion": 1,
"position": [1220, 400],
"id": "6c8e1463-c384-4f5c-9de3-d7e052b02b0a"
}
],
"connections": {
"When clicking \"Execute Workflow\"": {
"main": [
[
{
"node": "Code",
"type": "main",
"index": 0
}
]
]
},
"Code": {
"main": [
[
{
"node": "BarChart",
"type": "main",
"index": 0
},
{
"node": "Doughnut",
"type": "main",
"index": 0
}
]
]
}
}
}