test: Move credentials tests to separate folder (#22724)

This commit is contained in:
Artem Sorokin
2025-12-04 21:01:09 +01:00
committed by GitHub
parent 8928522991
commit ba1ac9e1a8
4 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import type { CreateCredentialDto } from '@n8n/api-types';
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../fixtures/base';
test.describe('Credential API Operations', () => {
test.describe('Basic CRUD Operations', () => {

View File

@@ -1,6 +1,6 @@
import { nanoid } from 'nanoid';
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../fixtures/base';
test.describe('Credentials', () => {
test.beforeEach(async ({ n8n }) => {

View File

@@ -1,4 +1,4 @@
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../fixtures/base';
test.describe('Global credentials @isolated', () => {
test.describe.configure({ mode: 'serial' });

View File

@@ -1,4 +1,4 @@
import { test, expect } from '../../fixtures/base';
import { test, expect } from '../../../fixtures/base';
test.describe('OAuth Credentials', () => {
test('should create and connect with Google OAuth2', async ({ n8n }) => {