test: Migrate subworkflow tests to workflows/editor/subworkflows/ (#22827)

This commit is contained in:
Artem Sorokin
2025-12-05 16:15:44 +01:00
committed by GitHub
parent be254b270f
commit decbc162aa
4 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../../../fixtures/base';
const WORKFLOW_FILE = 'Subworkflow-debugging-execute-workflow.json';

View File

@@ -1,4 +1,4 @@
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../../../fixtures/base';
const EDIT_FIELDS_NAMES = [
'Edit Fields0',

View File

@@ -1,9 +1,9 @@
import { readFileSync } from 'fs';
import type { IWorkflowBase } from 'n8n-workflow';
import { test, expect } from '../../fixtures/base';
import { resolveFromRoot } from '../../utils/path-helper';
import { retryUntil } from '../../utils/retry-utils';
import { test, expect } from '../../../../../fixtures/base';
import { resolveFromRoot } from '../../../../../utils/path-helper';
import { retryUntil } from '../../../../../utils/retry-utils';
test.describe('Parent that does not wait for sub-workflow', () => {
test('should not wait for the sub-workflow', async ({ api }) => {

View File

@@ -1,6 +1,6 @@
import { MANUAL_TRIGGER_NODE_NAME } from '../../config/constants';
import { test, expect } from '../../fixtures/base';
import { n8nPage } from '../../pages/n8nPage';
import { MANUAL_TRIGGER_NODE_NAME } from '../../../../../config/constants';
import { test, expect } from '../../../../../fixtures/base';
import { n8nPage } from '../../../../../pages/n8nPage';
const EXECUTE_WORKFLOW_NODE_NAME = 'Execute Sub-workflow';