Bump API version to 1.81.0 (#12882) #4801
Triggered via pull request
September 27, 2023 14:07
Status
Failure
Total duration
17m 39s
Artifacts
–
playwright.yml
on: pull_request
Playwright Tests (ubuntu-latest, Node.js 18.x)
11m 20s
Annotations
10 errors, 6 warnings, and 1 notice
../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active:
examples/playwright/src/tests/theia-output-view.test.ts#L1
1) ../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active
Test timeout of 30000ms exceeded.
|
../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active:
examples/playwright/src/theia-view.ts#L75
1) ../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active
Error: page.waitForSelector: Page closed
=========================== logs ===========================
waiting for locator('#outputView') to be visible
============================================================
at ../../src/theia-view.ts:75
73 |
74 | async waitForVisible(): Promise<void> {
> 75 | await this.page.waitForSelector(this.viewSelector, { state: 'visible' });
| ^
76 | }
77 |
78 | async isTabVisible(): Promise<boolean> {
at TheiaOutputView.waitForVisible (/home/runner/work/theia/theia/examples/playwright/src/theia-view.ts:75:25)
at TheiaOutputView.open (/home/runner/work/theia/theia/examples/playwright/src/theia-view.ts:55:20)
at TheiaApp.openView (/home/runner/work/theia/theia/examples/playwright/src/theia-app.ts:102:9)
at /home/runner/work/theia/theia/examples/playwright/src/tests/theia-output-view.test.ts:34:22
|
../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active:
examples/playwright/src/tests/theia-output-view.test.ts#L1
1) ../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 30000ms exceeded.
|
../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active:
examples/playwright/src/theia-view.ts#L75
1) ../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: page.waitForSelector: Page closed
=========================== logs ===========================
waiting for locator('#outputView') to be visible
============================================================
at ../../src/theia-view.ts:75
73 |
74 | async waitForVisible(): Promise<void> {
> 75 | await this.page.waitForSelector(this.viewSelector, { state: 'visible' });
| ^
76 | }
77 |
78 | async isTabVisible(): Promise<boolean> {
at TheiaOutputView.waitForVisible (/home/runner/work/theia/theia/examples/playwright/src/theia-view.ts:75:25)
at TheiaOutputView.open (/home/runner/work/theia/theia/examples/playwright/src/theia-view.ts:55:20)
at TheiaApp.openView (/home/runner/work/theia/theia/examples/playwright/src/theia-app.ts:102:9)
at /home/runner/work/theia/theia/examples/playwright/src/tests/theia-output-view.test.ts:34:22
|
../../src/tests/theia-output-view.test.ts:39:9 › Theia Output View › should be opened at the bottom and have the title "Output":
examples/playwright/src/tests/theia-output-view.test.ts#L40
2) ../../src/tests/theia-output-view.test.ts:39:9 › Theia Output View › should be opened at the bottom and have the title "Output"
TypeError: Cannot read properties of undefined (reading 'isInSidePanel')
38 | });
39 | test('should be opened at the bottom and have the title "Output"', async () => {
> 40 | expect(await outputView.isInSidePanel()).toBe(false);
| ^
41 | expect(await outputView.side()).toBe('bottom');
42 | expect(await outputView.title()).toBe('Output');
43 | });
at /home/runner/work/theia/theia/examples/playwright/src/tests/theia-output-view.test.ts:40:33
|
../../src/tests/theia-output-view.test.ts:39:9 › Theia Output View › should be opened at the bottom and have the title "Output":
examples/playwright/src/tests/theia-output-view.test.ts#L40
2) ../../src/tests/theia-output-view.test.ts:39:9 › Theia Output View › should be opened at the bottom and have the title "Output"
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
TypeError: Cannot read properties of undefined (reading 'isInSidePanel')
38 | });
39 | test('should be opened at the bottom and have the title "Output"', async () => {
> 40 | expect(await outputView.isInSidePanel()).toBe(false);
| ^
41 | expect(await outputView.side()).toBe('bottom');
42 | expect(await outputView.title()).toBe('Output');
43 | });
at /home/runner/work/theia/theia/examples/playwright/src/tests/theia-output-view.test.ts:40:33
|
../../src/tests/theia-output-view.test.ts:44:9 › Theia Output View › should be closable:
examples/playwright/src/tests/theia-output-view.test.ts#L45
3) ../../src/tests/theia-output-view.test.ts:44:9 › Theia Output View › should be closable ───────
TypeError: Cannot read properties of undefined (reading 'isClosable')
43 | });
44 | test('should be closable', async () => {
> 45 | expect(await outputView.isClosable()).toBe(true);
| ^
46 | await outputView.close();
47 | expect(await outputView.isTabVisible()).toBe(false);
48 | expect(await outputView.isDisplayed()).toBe(false);
at /home/runner/work/theia/theia/examples/playwright/src/tests/theia-output-view.test.ts:45:33
|
../../src/tests/theia-output-view.test.ts:44:9 › Theia Output View › should be closable:
examples/playwright/src/tests/theia-output-view.test.ts#L45
3) ../../src/tests/theia-output-view.test.ts:44:9 › Theia Output View › should be closable ───────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
TypeError: Cannot read properties of undefined (reading 'isClosable')
43 | });
44 | test('should be closable', async () => {
> 45 | expect(await outputView.isClosable()).toBe(true);
| ^
46 | await outputView.close();
47 | expect(await outputView.isTabVisible()).toBe(false);
48 | expect(await outputView.isDisplayed()).toBe(false);
at /home/runner/work/theia/theia/examples/playwright/src/tests/theia-output-view.test.ts:45:33
|
../../src/tests/theia-problems-view.test.ts:54:9 › Theia Problems View › should not throw an error if 'close' is called twice:
examples/playwright/src/tests/theia-problems-view.test.ts#L1
4) ../../src/tests/theia-problems-view.test.ts:54:9 › Theia Problems View › should not throw an error if 'close' is called twice
Test timeout of 30000ms exceeded.
|
../../src/tests/theia-problems-view.test.ts:54:9 › Theia Problems View › should not throw an error if 'close' is called twice:
examples/playwright/src/theia-view.ts#L75
4) ../../src/tests/theia-problems-view.test.ts:54:9 › Theia Problems View › should not throw an error if 'close' is called twice
Error: page.waitForSelector: Page closed
=========================== logs ===========================
waiting for locator('#problems') to be visible
============================================================
at ../../src/theia-view.ts:75
73 |
74 | async waitForVisible(): Promise<void> {
> 75 | await this.page.waitForSelector(this.viewSelector, { state: 'visible' });
| ^
76 | }
77 |
78 | async isTabVisible(): Promise<boolean> {
at TheiaProblemsView.waitForVisible (/home/runner/work/theia/theia/examples/playwright/src/theia-view.ts:75:25)
at TheiaProblemsView.open (/home/runner/work/theia/theia/examples/playwright/src/theia-view.ts:55:20)
at TheiaApp.openView (/home/runner/work/theia/theia/examples/playwright/src/theia-app.ts:102:9)
at /home/runner/work/theia/theia/examples/playwright/src/tests/theia-problems-view.test.ts:55:30
|
Playwright Tests (ubuntu-latest, Node.js 18.x)
The following actions uses node12 which is deprecated and will be forced to run on node16: GabrielBB/xvfb-action@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|
Slow Test:
src/tests/theia-output-view.test.ts#L1
src/tests/theia-output-view.test.ts took 1.2m
|
Slow Test:
src/tests/theia-problems-view.test.ts#L1
src/tests/theia-problems-view.test.ts took 46.1s
|
Slow Test:
src/tests/theia-quick-command.test.ts#L1
src/tests/theia-quick-command.test.ts took 41.3s
|
Slow Test:
src/tests/theia-text-editor.test.ts#L1
src/tests/theia-text-editor.test.ts took 27.9s
|
Slow Test:
src/tests/theia-explorer-view.test.ts#L1
src/tests/theia-explorer-view.test.ts took 21.4s
|
🎭 Playwright Run Summary
3 failed
../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active
../../src/tests/theia-output-view.test.ts:39:9 › Theia Output View › should be opened at the bottom and have the title "Output"
../../src/tests/theia-output-view.test.ts:44:9 › Theia Output View › should be closable ────────
1 flaky
../../src/tests/theia-problems-view.test.ts:54:9 › Theia Problems View › should not throw an error if 'close' is called twice
68 passed (6.4m)
|