Update npm packages #795
Annotations
5 errors, 2 warnings, and 1 notice
Playwright E2E Tests:
test/e2e/tests/editor/editor.entries.spec.ts#L238
1) [firefox] › editor/editor.entries.spec.ts:207:7 › Editor entries › Create new word, modify new word, autosaves changes, new word visible in editor and list
Error: Timed out 5000ms waiting for expect(locator).toHaveValue(expected)
Locator: locator('.entry-card').locator('label:has-text("Word")').locator('..').locator('div.input-group:has(span.wsid:has-text("th"))').locator('textarea')
Expected string: "ผัดชีอิ้วหมูa"
Received string: "ผัดชีอิ้วหมู"
Call log:
- expect.toHaveValue with timeout 5000ms
- waiting for locator('.entry-card').locator('label:has-text("Word")').locator('..').locator('div.input-group:has(span.wsid:has-text("th"))').locator('textarea')
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
236 | await expect((editorPageManager.getTextarea(
237 | editorPageManager.entryCard, 'Word', 'th')))
> 238 | .toHaveValue(entries.entry3.lexeme.th.value + 'a');
| ^
239 | await (editorPageManager.getTextarea(editorPageManager.entryCard, 'Word', 'th'))
240 | .fill(entries.entry3.lexeme.th.value);
241 |
at /home/runner/work/web-languageforge/web-languageforge/test/e2e/tests/editor/editor.entries.spec.ts:238:8
|
Playwright E2E Tests:
test/e2e/tests/editor/editor.entries.spec.ts#L238
1) [firefox] › editor/editor.entries.spec.ts:207:7 › Editor entries › Create new word, modify new word, autosaves changes, new word visible in editor and list
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveValue(expected)
Locator: locator('.entry-card').locator('label:has-text("Word")').locator('..').locator('div.input-group:has(span.wsid:has-text("th"))').locator('textarea')
Expected string: "ผัดชีอิ้วหมูa"
Received string: "ผัดชีอิ้วหมู"
Call log:
- expect.toHaveValue with timeout 5000ms
- waiting for locator('.entry-card').locator('label:has-text("Word")').locator('..').locator('div.input-group:has(span.wsid:has-text("th"))').locator('textarea')
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "ผัดชีอิ้วหมู"
236 | await expect((editorPageManager.getTextarea(
237 | editorPageManager.entryCard, 'Word', 'th')))
> 238 | .toHaveValue(entries.entry3.lexeme.th.value + 'a');
| ^
239 | await (editorPageManager.getTextarea(editorPageManager.entryCard, 'Word', 'th'))
240 | .fill(entries.entry3.lexeme.th.value);
241 |
at /home/runner/work/web-languageforge/web-languageforge/test/e2e/tests/editor/editor.entries.spec.ts:238:8
|
Playwright E2E Tests:
test/e2e/tests/editor/editor.pictures.spec.ts#L80
2) [firefox] › editor/editor.pictures.spec.ts:53:7 › Editor pictures › Showing and hiding captions › Empty caption is hidden
Error: Timed out 5000ms waiting for expect(locator).not.toBeVisible()
Locator: locator('.dc-sense.card').locator('img[src$="FriedRiceWithPork.jpg"]').locator('..//..').locator('div.input-group:has-Text("en")').locator('textarea')
Expected: not visible
Received: visible
Call log:
- expect.not.toBeVisible with timeout 5000ms
- waiting for locator('.dc-sense.card').locator('img[src$="FriedRiceWithPork.jpg"]').locator('..//..').locator('div.input-group:has-Text("en")').locator('textarea')
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
78 | await expect(caption).not.toBeVisible(); // it disappears immediately which could be annoying
79 | await editorPageManager.reload();
> 80 | await expect(caption).not.toBeVisible();
| ^
81 | });
82 |
83 | await test.step('Show empty captions', async () => {
at /home/runner/work/web-languageforge/web-languageforge/test/e2e/tests/editor/editor.pictures.spec.ts:80:33
at /home/runner/work/web-languageforge/web-languageforge/test/e2e/tests/editor/editor.pictures.spec.ts:75:5
|
Playwright E2E Tests:
test/e2e/tests/editor/editor.pictures.spec.ts#L80
2) [firefox] › editor/editor.pictures.spec.ts:53:7 › Editor pictures › Showing and hiding captions › Empty caption is hidden
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).not.toBeVisible()
Locator: locator('.dc-sense.card').locator('img[src$="FriedRiceWithPork.jpg"]').locator('..//..').locator('div.input-group:has-Text("en")').locator('textarea')
Expected: not visible
Received: visible
Call log:
- expect.not.toBeVisible with timeout 5000ms
- waiting for locator('.dc-sense.card').locator('img[src$="FriedRiceWithPork.jpg"]').locator('..//..').locator('div.input-group:has-Text("en")').locator('textarea')
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
- locator resolved to <textarea title="" dir="ltr" fit-text="" autocapitalize="n…> </textarea>
- unexpected value "visible"
78 | await expect(caption).not.toBeVisible(); // it disappears immediately which could be annoying
79 | await editorPageManager.reload();
> 80 | await expect(caption).not.toBeVisible();
| ^
81 | });
82 |
83 | await test.step('Show empty captions', async () => {
at /home/runner/work/web-languageforge/web-languageforge/test/e2e/tests/editor/editor.pictures.spec.ts:80:33
at /home/runner/work/web-languageforge/web-languageforge/test/e2e/tests/editor/editor.pictures.spec.ts:75:5
|
Playwright E2E Tests
Process completed with exit code 2.
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/upload-artifact@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "test-results-chromium-1", "test-results-chromium-2", "test-results-chromium-3", "test-results-chromium-4", "test-results-chromium-5", "test-results-chromium-6", "test-results-firefox-1", "test-results-firefox-2", "test-results-firefox-3", "test-results-firefox-4", "test-results-firefox-5", "test-results-firefox-6".
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/
|
Playwright E2E Tests
2 failed
[firefox] › editor/editor.entries.spec.ts:207:7 › Editor entries › Create new word, modify new word, autosaves changes, new word visible in editor and list
[firefox] › editor/editor.pictures.spec.ts:53:7 › Editor pictures › Showing and hiding captions
17 passed (3.0m)
|
The logs for this run have expired and are no longer available.
Loading