Fix Activity Preset Update Failing #2648
Annotations
5 errors and 1 notice
e2e-tests/tests/app-nav.test.ts#L8
1) tests/app-nav.test.ts:24:3 › App Nav › Initially the app menu should hidden ───────────────────
"beforeAll" hook timeout of 30000ms exceeded.
6 | let page: Page;
7 |
> 8 | test.beforeAll(async ({ browser }) => {
| ^
9 | context = await browser.newContext();
10 | page = await context.newPage();
11 | appNav = new AppNav(page);
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/app-nav.test.ts:8:6
|
e2e-tests/tests/app-nav.test.ts#L15
1) tests/app-nav.test.ts:24:3 › App Nav › Initially the app menu should hidden ───────────────────
TypeError: Cannot read properties of undefined (reading 'close')
13 |
14 | test.afterAll(async () => {
> 15 | await page.close();
| ^
16 | await context.close();
17 | });
18 |
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/app-nav.test.ts:15:14
|
e2e-tests/tests/constraints.test.ts#L18
2) tests/constraints.test.ts:45:3 › Constraints › Navigate to the plan page and show the constraints layout
"beforeAll" hook timeout of 30000ms exceeded.
16 | let schedulingGoals: SchedulingGoals;
17 |
> 18 | test.beforeAll(async ({ browser }) => {
| ^
19 | context = await browser.newContext();
20 | page = await context.newPage();
21 |
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/constraints.test.ts:18:6
|
e2e-tests/tests/constraints.test.ts#L36
2) tests/constraints.test.ts:45:3 › Constraints › Navigate to the plan page and show the constraints layout
TypeError: Cannot read properties of undefined (reading 'goto')
34 |
35 | test.afterAll(async () => {
> 36 | await plans.goto();
| ^
37 | await plans.deletePlan();
38 | await models.goto();
39 | await models.deleteModel();
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/constraints.test.ts:36:15
|
e2e-tests/tests/models.test.ts#L69
3) tests/models.test.ts:58:3 › Models › Create button should be disabled after submitting once ───
Error: Timed out 5000ms waiting for expect(received).toBeDisabled()
Call log:
- expect.toBeDisabled with timeout 5000ms
- waiting for getByRole('button', { name: 'Creating...' })
67 | // Instead, the creating button should be present and disabled
68 | await expect(models.creatingButton).toBeVisible();
> 69 | await expect(models.creatingButton).toBeDisabled();
| ^
70 | await expect(models.createButton).toBeVisible();
71 |
72 | await expect(models.inputFile).toBeEmpty();
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/models.test.ts:69:41
|
3 flaky
tests/app-nav.test.ts:24:3 › App Nav › Initially the app menu should hidden ────────────────────
tests/constraints.test.ts:45:3 › Constraints › Navigate to the plan page and show the constraints layout
tests/models.test.ts:58:3 › Models › Create button should be disabled after submitting once ────
95 passed (3.2m)
|
The logs for this run have expired and are no longer available.
Loading