This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
Test on webkit
#22
Annotations
12 errors and 2 notices
ui-tests/test/general.test.ts#L23
1) [webkit] › test/general.test.ts:17:7 › General › Kernel is registered ─────────────────────────
Error: Screenshot comparison failed:
3093 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/general.test.ts-snapshots/launcher-webkit-linux.png
Received: /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test-results/test-general-General-Kernel-is-registered-webkit/launcher-actual.png
Diff: /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test-results/test-general-General-Kernel-is-registered-webkit/launcher-diff.png
21 | throw new Error('Launcher not found');
22 | }
> 23 | expect(await launcherElement.screenshot()).toMatchSnapshot(imageName);
| ^
24 | });
25 | });
26 |
at /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/general.test.ts:23:48
|
ui-tests/test/general.test.ts#L23
1) [webkit] › test/general.test.ts:17:7 › General › Kernel is registered ─────────────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Screenshot comparison failed:
3093 pixels (ratio 0.01 of all image pixels) are different.
Expected: /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/general.test.ts-snapshots/launcher-webkit-linux.png
Received: /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test-results/test-general-General-Kernel-is-registered-webkit-retry1/launcher-actual.png
Diff: /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test-results/test-general-General-Kernel-is-registered-webkit-retry1/launcher-diff.png
21 | throw new Error('Launcher not found');
22 | }
> 23 | expect(await launcherElement.screenshot()).toMatchSnapshot(imageName);
| ^
24 | });
25 | });
26 |
at /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/general.test.ts:23:48
|
ui-tests/test/execute.test.ts#L27
2) [webkit] › test/execute.test.ts:17:7 › Code execution › Basic code execution ──────────────────
Error: expect(received).toBeTruthy()
Received: null
25 | const output = await page.notebook.getCellTextOutput(0);
26 |
> 27 | expect(output).toBeTruthy();
| ^
28 | expect(output![0]).toBe('4');
29 | });
30 | });
at /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/execute.test.ts:27:20
|
|
ui-tests/test/execute.test.ts#L27
1) [webkit] › test/execute.test.ts:17:7 › Code execution › Basic code execution ──────────────────
Error: expect(received).toBeTruthy()
Received: null
25 | const output = await page.notebook.getCellTextOutput(0);
26 |
> 27 | expect(output).toBeTruthy();
| ^
28 | expect(output![0]).toBe('4');
29 | });
30 | });
at /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/execute.test.ts:27:20
|
ui-tests/test/execute.test.ts#L1
1) [webkit] › test/execute.test.ts:17:7 › Code execution › Basic code execution ──────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 180000ms exceeded.
|
ui-tests/test/execute.test.ts#L24
1) [webkit] › test/execute.test.ts:17:7 › Code execution › Basic code execution ──────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: locator.waitFor: Page closed
=========================== logs ===========================
waiting for locator('#jp-main-statusbar').locator('text=Idle') to be visible
============================================================
22 | await page.notebook.createNew();
23 | await page.notebook.setCell(0, 'code', '2 + 2');
> 24 | await page.notebook.run();
| ^
25 | const output = await page.notebook.getCellTextOutput(0);
26 |
27 | expect(output).toBeTruthy();
at NotebookHelper.waitForRun (/home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/node_modules/@jupyterlab/galata/src/helpers/notebook.ts:385:23)
at NotebookHelper.run (/home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/node_modules/@jupyterlab/galata/src/helpers/notebook.ts:276:16)
at /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/execute.test.ts:24:5
|
ui-tests/test/execute.test.ts#L1
1) [webkit] › test/execute.test.ts:17:7 › Code execution › Basic code execution ──────────────────
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Pending operations:
- locator.waitFor at node_modules/@jupyterlab/galata/src/helpers/notebook.ts:385:23
|
ui-tests/test/files.test.ts#L1
2) [webkit] › test/files.test.ts:20:7 › File system › Create files from the notebook and open them in JupyterLab
Test timeout of 180000ms exceeded.
|
ui-tests/test/files.test.ts#L39
2) [webkit] › test/files.test.ts:20:7 › File system › Create files from the notebook and open them in JupyterLab
Error: locator.waitFor: Page closed
=========================== logs ===========================
waiting for locator('#jp-main-statusbar').locator('text=Idle') to be visible
============================================================
37 |
38 | // execute the cells
> 39 | await page.notebook.run();
| ^
40 |
41 | // the first cell output should contain the name of the notebook
42 | const output = await page.notebook.getCellTextOutput(0);
at NotebookHelper.waitForRun (/home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/node_modules/@jupyterlab/galata/src/helpers/notebook.ts:385:23)
at NotebookHelper.run (/home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/node_modules/@jupyterlab/galata/src/helpers/notebook.ts:276:16)
at /home/runner/work/xeus-python-kernel/xeus-python-kernel/ui-tests/test/files.test.ts:39:5
|
ui-tests/test/files.test.ts#L1
2) [webkit] › test/files.test.ts:20:7 › File system › Create files from the notebook and open them in JupyterLab
Pending operations:
- locator.waitFor at node_modules/@jupyterlab/galata/src/helpers/notebook.ts:385:23
|
|
|
|
The logs for this run have expired and are no longer available.
Loading