Mission Model Canary #6390
canary.yml
on: schedule
canary
/
unit-test
2m 33s
canary
/
e2e-test
9m 55s
Annotations
5 errors, 2 warnings, and 1 notice
[e2e tests] › tests/model.test.ts:143:3 › Model › Should successfully save the model changes:
e2e-tests/fixtures/Models.ts#L110
1) [e2e tests] › tests/model.test.ts:143:3 › Model › Should successfully save the model changes ──
Error: Timed out 5000ms waiting for expect(locator).toBeVisible()
Locator: getByRole('treegrid').getByRole('row', { name: 'colossal_pink_dinosaur' })
Expected: visible
Received: <element(s) not found>
Call log:
- expect.toBeVisible with timeout 5000ms
- waiting for getByRole('treegrid').getByRole('row', { name: 'colossal_pink_dinosaur' })
at fixtures/Models.ts:110
108 | await filterIcon.click();
109 | await this.page.locator('.ag-popup').getByRole('textbox', { name: 'Filter Value' }).first().fill(modelName);
> 110 | await expect(this.table.getByRole('row', { name: modelName })).toBeVisible();
| ^
111 | await this.page.keyboard.press('Escape');
112 | }
113 |
at Models.filterTable (/home/runner/work/aerie-ui/aerie-ui/e2e-tests/fixtures/Models.ts:110:68)
at Models.deleteModel (/home/runner/work/aerie-ui/aerie-ui/e2e-tests/fixtures/Models.ts:57:5)
at /home/runner/work/aerie-ui/aerie-ui/e2e-tests/tests/model.test.ts:62:3
|
[e2e tests] › tests/plan-activity-presets.test.ts:73:3 › Plan Activity Presets › Setting a preset to a directive should update the parameter values:
e2e-tests/tests/plan-activity-presets.test.ts#L18
2) [e2e tests] › tests/plan-activity-presets.test.ts:73:3 › Plan Activity Presets › Setting a preset to a directive should update the parameter values
"beforeAll" hook timeout of 30000ms exceeded.
16 | let schedulingGoals: SchedulingGoals;
17 |
> 18 | test.beforeAll(async ({ baseURL, browser }) => {
| ^
19 | context = await browser.newContext();
20 | page = await context.newPage();
21 |
at /home/runner/work/aerie-ui/aerie-ui/e2e-tests/tests/plan-activity-presets.test.ts:18:6
|
[e2e tests] › tests/plan-activity-presets.test.ts:73:3 › Plan Activity Presets › Setting a preset to a directive should update the parameter values:
e2e-tests/fixtures/Plan.ts#L252
2) [e2e tests] › tests/plan-activity-presets.test.ts:73:3 › Plan Activity Presets › Setting a preset to a directive should update the parameter values
Error: locator.click: Target page, context or browser has been closed
Call log:
- waiting for locator('[data-component-name="ActivityFormPanel"]').getByRole('combobox', { name: 'None' })
- waiting for" http://localhost:3000/models" navigation to finish...
- navigated to "http://localhost:3000/models"
at fixtures/Plan.ts:252
250 |
251 | async fillActivityPresetName(presetName: string) {
> 252 | await this.panelActivityForm.getByRole('combobox', { name: 'None' }).click();
| ^
253 | await this.panelActivityForm.locator('.dropdown-header').waitFor({ state: 'attached' });
254 | await this.panelActivityForm.getByPlaceholder('Enter preset name').click();
255 | await this.panelActivityForm.getByPlaceholder('Enter preset name').fill(presetName);
at Plan.fillActivityPresetName (/home/runner/work/aerie-ui/aerie-ui/e2e-tests/fixtures/Plan.ts:252:74)
at /home/runner/work/aerie-ui/aerie-ui/e2e-tests/tests/plan-activity-presets.test.ts:49:14
|
[e2e tests] › tests/plan-simulation-templates.test.ts:75:3 › Plan Simulation Templates › Setting a simulation template to a simulation should update the parameter values:
e2e-tests/tests/plan-simulation-templates.test.ts#L18
3) [e2e tests] › tests/plan-simulation-templates.test.ts:75:3 › Plan Simulation Templates › Setting a simulation template to a simulation should update the parameter values
"beforeAll" hook timeout of 30000ms exceeded.
16 | let schedulingGoals: SchedulingGoals;
17 |
> 18 | test.beforeAll(async ({ baseURL, browser }) => {
| ^
19 | context = await browser.newContext();
20 | page = await context.newPage();
21 |
at /home/runner/work/aerie-ui/aerie-ui/e2e-tests/tests/plan-simulation-templates.test.ts:18:6
|
[e2e tests] › tests/plan-simulation-templates.test.ts:75:3 › Plan Simulation Templates › Setting a simulation template to a simulation should update the parameter values:
e2e-tests/tests/plan-simulation-templates.test.ts#L40
3) [e2e tests] › tests/plan-simulation-templates.test.ts:75:3 › Plan Simulation Templates › Setting a simulation template to a simulation should update the parameter values
Error: locator.fill: Target page, context or browser has been closed
Call log:
- waiting for locator('[data-component-name="SimulationPanel"]').locator('.parameter-base-number input[type="number"]').first()
- locator resolved to <input disabled type="number" class="st-input w-100"/>
- fill("199")
- attempting fill action
2 × waiting for element to be visible, enabled and editable
- element is not visible
- retrying fill action
- waiting 20ms
2 × waiting for element to be visible, enabled and editable
- element is not visible
- retrying fill action
- waiting 100ms
40 × waiting for element to be visible, enabled and editable
- element is not visible
- retrying fill action
- waiting 500ms
- element was detached from the DOM, retrying
38 | await page.getByRole('button', { name: 'Simulate' }).click();
39 |
> 40 | await plan.panelSimulation.locator('.parameter-base-number input[type="number"]').first().fill('199');
| ^
41 | await plan.panelSimulation.locator('.parameter-base-number input[type="number"]').first().blur();
42 |
43 | await plan.fillSimulationTemplateName('Template 1');
at /home/runner/work/aerie-ui/aerie-ui/e2e-tests/tests/plan-simulation-templates.test.ts:40:93
|
canary / unit-test
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
canary / e2e-test
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
🎭 Playwright Run Summary
3 flaky
[e2e tests] › tests/model.test.ts:143:3 › Model › Should successfully save the model changes ───
[e2e tests] › tests/plan-activity-presets.test.ts:73:3 › Plan Activity Presets › Setting a preset to a directive should update the parameter values
[e2e tests] › tests/plan-simulation-templates.test.ts:75:3 › Plan Simulation Templates › Setting a simulation template to a simulation should update the parameter values
186 passed (7.2m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
E2E Test Results
|
23.7 MB |
|
Unit Test Results
|
3.26 MB |
|