Productize team import and lock board lifecycle with E2E #7
Annotations
3 errors, 1 warning, and 1 notice
|
verify
Process completed with exit code 1.
|
|
e2e/board-flow.spec.ts:4:7 › board flow › creates:
e2e/board-flow.spec.ts#L27
1) e2e/board-flow.spec.ts:4:7 › board flow › creates, updates, comments, deletes comment, and deletes issue from the board
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: expect(locator).toBeVisible() failed
Locator: getByText('Playwright lifecycle issue')
Expected: visible
Error: strict mode violation: getByText('Playwright lifecycle issue') resolved to 2 elements:
1) <h3 class="issue-card__title">Playwright lifecycle issue</h3> aka getByTestId('issue-card-01658f92-3568-42f3-bae4-d80472ab09b5').getByRole('button', { name: 'Open INV-' })
2) <h3 class="issue-card__title">Playwright lifecycle issue updated</h3> aka getByTestId('issue-card-2b6b2fa3-39fd-4ae5-8a27-ed48462f5773').getByRole('button', { name: 'Open INV-' })
Call log:
- Expect "toBeVisible" with timeout 5000ms
- waiting for getByText('Playwright lifecycle issue')
25 | await expect(issueDrawer).toBeVisible();
26 | await expect(issueDrawer.getByLabel('Issue title')).toHaveValue(createdTitle);
> 27 | await expect(page.getByText(createdTitle)).toBeVisible();
| ^
28 |
29 | const titleInput = issueDrawer.getByLabel('Issue title');
30 | await titleInput.fill(updatedTitle);
at /home/runner/work/Involute/Involute/e2e/board-flow.spec.ts:27:48
|
|
e2e/board-flow.spec.ts:4:7 › board flow › creates:
e2e/board-flow.spec.ts#L52
1) e2e/board-flow.spec.ts:4:7 › board flow › creates, updates, comments, deletes comment, and deletes issue from the board
Error: locator.click: Error: strict mode violation: getByRole('dialog', { name: 'Issue detail drawer' }).getByRole('button', { name: 'Delete comment' }) resolved to 2 elements:
1) <button type="button" aria-label="Delete comment" class="issue-comment__delete">Delete</button> aka getByLabel('Delete comment')
2) <button type="button" class="issue-comment__delete">Delete comment</button> aka getByText('Delete comment')
Call log:
- waiting for getByRole('dialog', { name: 'Issue detail drawer' }).getByRole('button', { name: 'Delete comment' })
50 | await expect(issueDrawer.getByText('Playwright comment')).toBeVisible();
51 |
> 52 | await issueDrawer.getByRole('button', { name: 'Delete comment' }).click();
| ^
53 | await expect(issueDrawer.getByText('Playwright comment')).toHaveCount(0);
54 |
55 | await issueDrawer.getByRole('button', { name: 'Delete issue' }).click();
at /home/runner/work/Involute/Involute/e2e/board-flow.spec.ts:52:71
|
|
verify
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/setup-node@v4, pnpm/action-setup@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
🎭 Playwright Run Summary
1 failed
e2e/board-flow.spec.ts:4:7 › board flow › creates, updates, comments, deletes comment, and deletes issue from the board
|