refactor: perform dimensional analysis and numerical evaluation in same pass (WIP) #1563
Annotations
5 errors, 1 warning, and 1 notice
Run Playwright tests:
tests/test_plotting.spec.mjs#L429
1) [chromium] › test_plotting.spec.mjs:419:1 › test scatter plot x-y scalar vector mismatch ──────
TimeoutError: locator.waitFor: Timeout 1000ms exceeded.
Call log:
- waiting for locator('#plot-expression-1-0').locator('text=Both the x and y values need to be a scalar value or a vector')
427 | await page.waitForSelector('.status-footer', { state: 'detached' });
428 |
> 429 | await page.locator('#plot-expression-1-0 >> text=Both the x and y values need to be a scalar value or a vector').waitFor({state: 'attached', timeout: 1000});
| ^
430 |
431 | });
432 |
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_plotting.spec.mjs:429:116
|
Run Playwright tests:
tests/test_file_save_open.spec.mjs#L147
2) [firefox] › test_file_save_open.spec.mjs:138:1 › Test opening file with results and syntax error
Error: fileChooser.setFiles: Test ended.
145 | const path = "tests/test_sheet_parsing_error.epxyz";
146 | page.on('filechooser', async (fileChooser) => {
> 147 | await fileChooser.setFiles(path);
| ^
148 | });
149 | await page.locator('#open-sheet').click();
150 |
at Page.<anonymous> (/home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_file_save_open.spec.mjs:147:5)
|
Run Playwright tests:
tests/test_matrix_functions.spec.mjs#L319
3) [firefox] › test_matrix_functions.spec.mjs:314:1 › Test range with two arguments ──────────────
TimeoutError: page.textContent: Timeout 120000ms exceeded.
Call log:
- waiting for locator('#result-value-0')
317 | await page.waitForSelector('text=Updating...', {state: 'detached'});
318 |
> 319 | let content = await page.textContent(`#result-value-0`);
| ^
320 | expect(content).toBe(String.raw`\begin{bmatrix} -5 \\ -4 \\ -3 \\ -2 \\ -1 \\ 0 \\ 1 \\ 2 \\ 3 \\ 4 \end{bmatrix}`);
321 | });
322 |
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_matrix_functions.spec.mjs:319:28
|
Run Playwright tests:
tests/test_symbolic_expression_error_handling.spec.mjs#L1
4) [firefox] › test_symbolic_expression_error_handling.spec.mjs:5:1 › Test handling of symbolic expression error
Test timeout of 240000ms exceeded.
|
Run Playwright tests:
tests/test_symbolic_expression_error_handling.spec.mjs#L14
4) [firefox] › test_symbolic_expression_error_handling.spec.mjs:5:1 › Test handling of symbolic expression error
Error: locator.textContent: Test timeout of 240000ms exceeded.
Call log:
- waiting for locator('#result-value-21')
12 | await page.locator('text=Updating...').waitFor({state: 'detached', timeout: pyodideLoadTimeout});
13 |
> 14 | let content = await page.locator('#result-value-21').textContent({timeout: 240000});
| ^
15 | expect(parseLatexFloat(content)).toBeCloseTo(57168.5056551697, precision);
16 | });
17 |
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_symbolic_expression_error_handling.spec.mjs:14:56
|
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "screenshots", "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 Playwright tests
4 flaky
[chromium] › test_plotting.spec.mjs:419:1 › test scatter plot x-y scalar vector mismatch ───────
[firefox] › test_file_save_open.spec.mjs:138:1 › Test opening file with results and syntax error
[firefox] › test_matrix_functions.spec.mjs:314:1 › Test range with two arguments ───────────────
[firefox] › test_symbolic_expression_error_handling.spec.mjs:5:1 › Test handling of symbolic expression error
9 skipped
765 passed (24.1m)
|
Loading