mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 03:42:16 +00:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { renderComponent } from '@/__tests__/render';
|
|
import { createTestingPinia } from '@pinia/testing';
|
|
import ParameterInputWrapper from './ParameterInputWrapper.vue';
|
|
import { STORES } from '@/constants';
|
|
import { SETTINGS_STORE_DEFAULT_STATE } from '@/__tests__/utils';
|
|
|
|
describe('ParameterInputWrapper.vue', () => {
|
|
test('should resolve expression', async () => {
|
|
const { getByTestId } = renderComponent(ParameterInputWrapper, {
|
|
pinia: createTestingPinia({
|
|
initialState: {
|
|
[STORES.NDV]: {
|
|
activeNodeName: 'testNode',
|
|
input: { nodeName: 'inputNode' },
|
|
},
|
|
[STORES.SETTINGS]: SETTINGS_STORE_DEFAULT_STATE,
|
|
},
|
|
}),
|
|
props: {
|
|
parameter: {
|
|
name: 'test',
|
|
type: 'string',
|
|
},
|
|
path: 'params.test',
|
|
modelValue: '={{ $secrets.infisical.password }}',
|
|
isForCredential: true,
|
|
},
|
|
global: {
|
|
mocks: {
|
|
$workflowHelpers: {
|
|
resolveExpression: vi.fn(() => 'topSecret'),
|
|
},
|
|
$ndvStore: {
|
|
activeNode: vi.fn(() => ({ test: 'test' })),
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(getByTestId('parameter-input-hint')).toHaveTextContent('[ERROR: ]');
|
|
});
|
|
});
|