mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 01:24:05 -08:00
62 lines
1.4 KiB
TypeScript
62 lines
1.4 KiB
TypeScript
|
import Vue from 'vue';
|
||
|
import { PiniaVuePlugin } from 'pinia';
|
||
|
import { createTestingPinia } from '@pinia/testing';
|
||
|
import { render, screen } from '@testing-library/vue';
|
||
|
import RunDataJson from '@/components/RunDataJson.vue';
|
||
|
|
||
|
Vue.use(PiniaVuePlugin);
|
||
|
|
||
|
describe('RunDataJson.vue', () => {
|
||
|
it('renders json values properly', () => {
|
||
|
render(RunDataJson, {
|
||
|
pinia: createTestingPinia(),
|
||
|
props: {
|
||
|
mappingEnabled: true,
|
||
|
editMode: { enabled: false },
|
||
|
inputData: [{
|
||
|
json: {
|
||
|
list: [1,2,3],
|
||
|
record: { name: 'Joe' },
|
||
|
myNumber: 123,
|
||
|
myStringNumber: '456',
|
||
|
myStringText: 'abc',
|
||
|
nil: null,
|
||
|
d: undefined,
|
||
|
},
|
||
|
}],
|
||
|
node: {
|
||
|
parameters: {
|
||
|
keepOnlySet: false,
|
||
|
values: {},
|
||
|
options: {},
|
||
|
},
|
||
|
id: '820ea733-d8a6-4379-8e73-88a2347ea003',
|
||
|
name: 'Set',
|
||
|
type: 'n8n-nodes-base.set',
|
||
|
typeVersion: 1,
|
||
|
position: [
|
||
|
380,
|
||
|
1060,
|
||
|
],
|
||
|
disabled: false,
|
||
|
},
|
||
|
},
|
||
|
mocks: {
|
||
|
$locale: {
|
||
|
baseText() {
|
||
|
return '';
|
||
|
},
|
||
|
},
|
||
|
$store: {
|
||
|
getters: {},
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
expect(screen.getByText('123')).toBeInTheDocument();
|
||
|
expect(screen.getByText('"456"')).toBeInTheDocument();
|
||
|
expect(screen.getByText('"abc"')).toBeInTheDocument();
|
||
|
expect(screen.getByText('null')).toBeInTheDocument();
|
||
|
expect(screen.queryByText('undefined')).not.toBeInTheDocument();
|
||
|
});
|
||
|
});
|