feat(editor): Add variables and context section to schema view (#13875)

This commit is contained in:
Elias Meire
2025-03-19 17:18:54 +01:00
committed by GitHub
parent 3f10a50b21
commit c06ce765f1
12 changed files with 1573 additions and 122 deletions

View File

@@ -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');