test: Rename building-blocks tests to remove numeric prefixes (#22846)

This commit is contained in:
Artem Sorokin
2025-12-05 17:51:00 +01:00
committed by GitHub
parent 5234b286ac
commit 39a4b29b9d
5 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ import { nanoid } from 'nanoid';
import { test, expect } from '../../../fixtures/base';
test.describe('04 - Credentials', () => {
test.describe('Credentials', () => {
test('composer: createFromList creates credential', async ({ n8n }) => {
const projectId = await n8n.start.fromNewProject();
const credentialName = `credential-${nanoid()}`;

View File

@@ -1,6 +1,6 @@
import { test, expect } from '../../../fixtures/base';
test.describe('03 - Node Details Configuration', () => {
test.describe('Node Details Configuration', () => {
test.beforeEach(async ({ n8n }) => {
await n8n.start.fromBlankCanvas();
});

View File

@@ -1,4 +1,4 @@
import { expect, test } from '../../fixtures/base';
import { expect, test } from '../../../fixtures/base';
test.describe('User API Service', () => {
test('should create a user with default values', async ({ api }) => {

View File

@@ -1,6 +1,6 @@
import { test, expect } from '../../../fixtures/base';
test.describe('01 - UI Test Entry Points', () => {
test.describe('UI Test Entry Points', () => {
test.describe('Entry Point: Home Page', () => {
test('should navigate from home', async ({ n8n }) => {
await n8n.start.fromHome();