Timeline zooming and panning #2631
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
8 errors, 1 warning, and 1 notice
tests/app-nav.test.ts:24:3 › App Nav › Initially the app menu should hidden:
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
|
tests/app-nav.test.ts:24:3 › App Nav › Initially the app menu should hidden:
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
|
tests/constraints.test.ts:45:3 › Constraints › Navigate to the plan page and show the constraints layout:
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
|
tests/constraints.test.ts:45:3 › Constraints › Navigate to the plan page and show the constraints layout:
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
|
tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent:
e2e-tests/tests/plan-activities.test.ts#L90
3) tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent
Error: Timed out 5000ms waiting for expect(received).toHaveCount(expected) // deep equality
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.modal-content .anchor-item')
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
88 | });
89 | await page.getByText('Delete 2 Activity Directives').click();
> 90 | await expect(page.locator('.modal-content .anchor-item')).toHaveCount(1);
| ^
91 | await page.locator('.modal-content select').nth(1).selectOption('anchor-root');
92 | await page.getByRole('button', { name: 'Confirm' }).click();
93 | });
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/plan-activities.test.ts:90:63
|
tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent:
e2e-tests/tests/plan-activities.test.ts#L46
3) tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent
Test timeout of 30000ms exceeded while running "afterEach" hook.
44 | });
45 |
> 46 | test.afterEach(async () => {
| ^
47 | await plan.deleteAllActivities();
48 | });
49 |
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/plan-activities.test.ts:46:6
|
tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent:
e2e-tests/tests/plan-activities.test.ts#L90
3) tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(received).toHaveCount(expected) // deep equality
Expected: 1
Received: 0
Call log:
- expect.toHaveCount with timeout 5000ms
- waiting for locator('.modal-content .anchor-item')
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
- locator resolved to 0 elements
- unexpected value "0"
88 | });
89 | await page.getByText('Delete 2 Activity Directives').click();
> 90 | await expect(page.locator('.modal-content .anchor-item')).toHaveCount(1);
| ^
91 | await page.locator('.modal-content select').nth(1).selectOption('anchor-root');
92 | await page.getByRole('button', { name: 'Confirm' }).click();
93 | });
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/plan-activities.test.ts:90:63
|
tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent:
e2e-tests/tests/plan-activities.test.ts#L46
3) tests/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Test timeout of 30000ms exceeded while running "afterEach" hook.
44 | });
45 |
> 46 | test.afterEach(async () => {
| ^
47 | await plan.deleteAllActivities();
48 | });
49 |
at /home/runner/work/***-ui/***-ui/e2e-tests/tests/plan-activities.test.ts:46:6
|
Slow Test:
tests/plan-activities.test.ts#L1
tests/plan-activities.test.ts took 1.3m
|
🎭 Playwright Run Summary
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/plan-activities.test.ts:75:3 › Plan Activities › Deleting multiple activity directives but only 1 has a remaining anchored dependent should prompt for just the one with a remaining dependent
95 passed (3.8m)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
Test Results
Expired
|
24.8 MB |
|