test: Migrate Cypress test for the log view (#19108)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Suguru Inoue
2025-09-03 14:21:28 +02:00
committed by GitHub
parent 6bd4edf1ec
commit f7479bb2e5
17 changed files with 428 additions and 247 deletions

View File

@@ -105,7 +105,7 @@ export const test = base.extend<CloudOnlyFixtures>({
},
// Browser context with cloud container URL and interceptors
context: async ({ context, baseURL }, use) => {
context: async ({ context }, use) => {
await setupDefaultInterceptors(context);
await use(context);
},
@@ -123,8 +123,8 @@ export const test = base.extend<CloudOnlyFixtures>({
},
// n8n page object
n8n: async ({ page }, use) => {
const n8nInstance = new n8nPage(page);
n8n: async ({ page, api }, use) => {
const n8nInstance = new n8nPage(page, api);
await use(n8nInstance);
},