mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
test: Migrate Cypress test for the log view (#19108)
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -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);
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user