mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
feat(editor): Add variables and context section to schema view (#13875)
This commit is contained in:
@@ -34,6 +34,11 @@ vi.mock('@/composables/useExecutionHelpers', () => ({
|
||||
}),
|
||||
}));
|
||||
|
||||
vi.mock('@/composables/useWorkflowHelpers', async (importOriginal) => {
|
||||
const actual: object = await importOriginal();
|
||||
return { ...actual, resolveParameter: vi.fn(() => 123) };
|
||||
});
|
||||
|
||||
describe('RunData', () => {
|
||||
beforeAll(() => {
|
||||
resolveRelatedExecutionUrl.mockReturnValue('execution.url/123');
|
||||
|
||||
Reference in New Issue
Block a user