Merge pull request #302 from mgreminger/select-inserted #1494
Annotations
7 errors, 1 warning, and 1 notice
[chromium] › test_complex.spec.mjs:205:1 › Test conj function:
tests/test_complex.spec.mjs#L224
1) [chromium] › test_complex.spec.mjs:205:1 › Test conj function ─────────────────────────────────
TimeoutError: page.textContent: Timeout 120000ms exceeded.
Call log:
- waiting for locator('#result-value-0')
222 | await page.locator('#cell-2 >> text=Dimension Error').waitFor({state: "attached", timeout: 1000});
223 |
> 224 | let content = complexLatex(await page.textContent('#result-value-0'));
| ^
225 | expect(content.re).toBeCloseTo(-.001, precision);
226 | expect(content.im).toBeCloseTo(-.002, precision);
227 | content = await page.textContent('#result-units-0');
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_complex.spec.mjs:224:41
|
[chromium] › test_matrix_functions.spec.mjs:110:1 › Test min/max of a col vector:
tests/test_matrix_functions.spec.mjs#L121
2) [chromium] › test_matrix_functions.spec.mjs:110:1 › Test min/max of a col vector ──────────────
TimeoutError: page.textContent: Timeout 120000ms exceeded.
Call log:
- waiting for locator('#result-value-0')
119 | await page.waitForSelector('text=Updating...', {state: 'detached'});
120 |
> 121 | let content = await page.textContent(`#result-value-0`);
| ^
122 | expect(parseLatexFloat(content)).toBeCloseTo(9, precision);
123 | content = await page.textContent('#result-units-0');
124 | expect(content).toBe('');
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_matrix_functions.spec.mjs:121:28
|
[firefox] › test_checkpoints.spec.mjs:15:1 › Test autosave checkpoints:
tests/utility.mjs#L55
3) [firefox] › test_checkpoints.spec.mjs:15:1 › Test autosave checkpoints ────────────────────────
TimeoutError: page.waitForSelector: Timeout 100000ms exceeded.
Call log:
- waiting for locator('.status-footer') to be detached
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer promise svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locator resolved to visible <div class="status-footer svelte-y9cnok">…</div>
- locat
|
[firefox] › test_file_save_open.spec.mjs:6:1 › Test local file save and open:
tests/test_file_save_open.spec.mjs#L71
4) [firefox] › test_file_save_open.spec.mjs:6:1 › Test local file save and open ──────────────────
Error: expect(received).toEqual(expected) // deep equality
Expected: 0
Received: 289
69 | await page.screenshot({ path: `${screenshotDir}/${browserName}_screenshot_file_open_save_check.png`, fullPage: false });
70 |
> 71 | expect(compareImages(`${browserName}_screenshot_file_open_save.png`, `${browserName}_screenshot_file_open_save_check.png`)).toEqual(0);
| ^
72 |
73 | // Attempt to open an image file to make sure there is not a crash and that there is an error message shown
74 | page.once('filechooser', async (fileChooser) => {
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_file_save_open.spec.mjs:71:127
|
[firefox] › test_file_save_open.spec.mjs:138:1 › Test opening file with results and syntax error:
tests/test_file_save_open.spec.mjs#L147
5) [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)
|
[firefox] › test_matrix_multiplication.spec.mjs:243:1 › Incompatible multiplication with matrix literals and matrix multiplication operator:
tests/test_matrix_multiplication.spec.mjs#L248
6) [firefox] › test_matrix_multiplication.spec.mjs:243:1 › Incompatible multiplication with matrix literals and matrix multiplication operator
Error: Timed out 10000ms waiting for expect(locator).toBeVisible()
Locator: locator('.status-footer').locator('text=ShapeError')
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 10000ms
- waiting for locator('.status-footer').locator('text=ShapeError')
246 | await page.waitForSelector('text=Updating...', {state: 'detached'});
247 |
> 248 | await expect(page.locator('.status-footer >> text=ShapeError')).toBeVisible();
| ^
249 | });
250 |
251 | test('Scalar literal times matrix literal', async () => {
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_matrix_multiplication.spec.mjs:248:67
|
[firefox] › test_syntax_error_messages.spec.mjs:121:1 › Error message for missing multiplication symbol between symbol then expression:
tests/test_syntax_error_messages.spec.mjs#L124
7) [firefox] › test_syntax_error_messages.spec.mjs:121:1 › Error message for missing multiplication symbol between symbol then expression
TimeoutError: locator.waitFor: Timeout 1000ms exceeded.
Call log:
- waiting for locator('text=Missing multiplication symbol in expression')
122 | // variable followed by number
123 | await page.setLatex(0, String.raw`\pi\left(a+b\right)=`);
> 124 | await page.locator('text=Missing multiplication symbol in expression').waitFor({state: "attached", timeout: 1000});
| ^
125 | });
126 |
127 | test('Error message for missing multiplication symbol between expression then trig function', async () => {
at /home/runner/work/EngineeringPaper.xyz/EngineeringPaper.xyz/tests/test_syntax_error_messages.spec.mjs:124:74
|
Deprecation notice: v1, v2, and v3 of the artifact actions
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/
|
🎭 Playwright Run Summary
7 flaky
[chromium] › test_complex.spec.mjs:205:1 › Test conj function ──────────────────────────────────
[chromium] › test_matrix_functions.spec.mjs:110:1 › Test min/max of a col vector ───────────────
[firefox] › test_checkpoints.spec.mjs:15:1 › Test autosave checkpoints ─────────────────────────
[firefox] › test_file_save_open.spec.mjs:6:1 › Test local file save and open ───────────────────
[firefox] › test_file_save_open.spec.mjs:138:1 › Test opening file with results and syntax error
[firefox] › test_matrix_multiplication.spec.mjs:243:1 › Incompatible multiplication with matrix literals and matrix multiplication operator
[firefox] › test_syntax_error_messages.spec.mjs:121:1 › Error message for missing multiplication symbol between symbol then expression
9 skipped
760 passed (20.6m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
screenshots
|
15.9 MB |
|
test-results
Expired
|
276 MB |
|