test: Migrate data pinning tests from Cypress to Playwright (#18462)

This commit is contained in:
shortstacked
2025-08-18 12:28:32 +01:00
committed by GitHub
parent 08d82491c8
commit 7c80086a6b
12 changed files with 603 additions and 252 deletions

View File

@@ -36,7 +36,7 @@ test.describe('Code node', () => {
await n8n.ndv.execute();
await expect(
n8n.notifications.notificationContainerByText('Node executed successfully').first(),
n8n.notifications.getNotificationByTitle('Node executed successfully').first(),
).toBeVisible();
await n8n.ndv.getParameterInput('mode').click();
@@ -45,7 +45,7 @@ test.describe('Code node', () => {
await n8n.ndv.execute();
await expect(
n8n.notifications.notificationContainerByText('Node executed successfully').first(),
n8n.notifications.getNotificationByTitle('Node executed successfully').first(),
).toBeVisible();
});