Merge pull request #315 from ixartz/update-logo #772
Annotations
1 error, 2 warnings, and 1 notice
Run E2E tests:
tests/e2e/Counter.e2e.ts#L45
1) [webkit] βΊ e2e/Counter.e2e.ts:24:9 βΊ Counter βΊ Increment operation βΊ should increment the counter and validate the count
Error: Timed out 5000ms waiting for expect(locator).toHaveText(expected)
Locator: getByText('Count:')
Expected string: "Count: 2"
Received string: "Count: 0"
Call log:
- expect.toHaveText with timeout 5000ms
- waiting for getByText('Count:')
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
- locator resolved to <div>Count: 0</div>
- unexpected value "Count: 0"
43 | await page.getByRole('button', { name: 'Increment' }).click();
44 |
> 45 | await expect(page.getByText('Count:')).toHaveText(`Count: ${countNumber + 2}`);
| ^
46 |
47 | await page.getByLabel('Increment by').fill('3');
48 | await page.getByRole('button', { name: 'Increment' }).click();
at /home/runner/work/Next-js-Boilerplate/Next-js-Boilerplate/tests/e2e/Counter.e2e.ts:45:46
|
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-node@v3, actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "test-results".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
Run E2E tests
1 flaky
[webkit] βΊ e2e/Counter.e2e.ts:24:9 βΊ Counter βΊ Increment operation βΊ should increment the counter and validate the count
41 passed (39.5s)
|
Loading