test: Migrate execution tests to workflows/editor/execution/ (#22818)

This commit is contained in:
Artem Sorokin
2025-12-05 14:35:05 +01:00
committed by GitHub
parent 5c5de5c7ae
commit 305ba9201a
6 changed files with 9 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
import { test, expect } from '../../fixtures/base';
import type { n8nPage } from '../../pages/n8nPage';
import { test, expect } from '../../../../../fixtures/base';
import type { n8nPage } from '../../../../../pages/n8nPage';
// Example of using helper functions inside a test
test.describe('Debug mode', () => {

View File

@@ -1,5 +1,5 @@
import { test, expect } from '../../fixtures/base';
import type { n8nPage } from '../../pages/n8nPage';
import { test, expect } from '../../../../../fixtures/base';
import type { n8nPage } from '../../../../../pages/n8nPage';
const NODE_NAMES = {
PROCESS_THE_DATA: 'Process The Data',

View File

@@ -1,5 +1,5 @@
import { EDIT_FIELDS_SET_NODE_NAME } from '../../config/constants';
import { test, expect } from '../../fixtures/base';
import { EDIT_FIELDS_SET_NODE_NAME } from '../../../../../config/constants';
import { test, expect } from '../../../../../fixtures/base';
const NOTIFICATIONS = {
WORKFLOW_EXECUTED_SUCCESSFULLY: 'Workflow executed successfully',

View File

@@ -1,4 +1,4 @@
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../../../fixtures/base';
// Node name constants
const NODES = {

View File

@@ -1,4 +1,4 @@
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../../../fixtures/base';
test.describe('Manual partial execution', () => {
test('should not execute parent nodes with no run data', async ({ n8n }) => {

View File

@@ -1,4 +1,4 @@
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../../../fixtures/base';
// eslint-disable-next-line n8n-local-rules/no-skipped-tests -- Flaky in multi-main mode: "execute previous nodes" also executes the current node
test.describe.skip('Execute previous nodes', () => {