Stencil Nightly Build #711
stencil-nightly.yml
on: schedule
build-core-with-stencil-nightly
1m 10s
Matrix: test-core-screenshot
test-core-clean-build
12s
test-core-lint
48s
test-core-spec
47s
verify-screenshots
2s
Matrix: test-angular-e2e
Matrix: test-react-e2e
Matrix: test-react-router-e2e
Matrix: test-vue-e2e
verify-test-angular-e2e
2s
verify-test-react-e2e
2s
verify-test-react-router-e2e
2s
verify-test-vue-e2e
3s
Annotations
9 errors and 20 notices
|
[Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:130:11 › radio: a11y - md/ltr/dark › radio: keyboard navigation - md/ltr/dark › using arrow keys should move between enabled radios within group:
src/components/radio/test/a11y/radio.e2e.ts#L134
1) [Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:130:11 › radio: a11y - md/ltr/dark › radio: keyboard navigation - md/ltr/dark › using arrow keys should move between enabled radios within group
Error: Timed out 5000ms waiting for expect(locator).toBeFocused()
Locator: locator('#first-group ion-radio').first()
Expected: focused
Received: inactive
Call log:
- Expect "toBeFocused" with timeout 5000ms
- waiting for locator('#first-group ion-radio').first()
9 × locator resolved to <ion-radio value="huey" role="radio" tabindex="0" aria-checked="true" class="md in-item radio-checked radio-label-placement-start hydrated">Huey</ion-radio>
- unexpected value "inactive"
132 |
133 | await pageUtils.pressKeys('Tab');
> 134 | await expect(firstGroupRadios.nth(0)).toBeFocused();
| ^
135 |
136 | await page.keyboard.press('ArrowDown');
137 | await expect(firstGroupRadios.nth(1)).toBeFocused();
at /ionic/src/components/radio/test/a11y/radio.e2e.ts:134:47
|
|
[Mobile Safari] › src/components/input-otp/test/separators/input-otp.e2e.ts:90:9 › input-otp: separators functionality - ios/ltr › should render separators after the second and third input box:
src/components/input-otp/test/separators/input-otp.e2e.ts#L99
1) [Mobile Safari] › src/components/input-otp/test/separators/input-otp.e2e.ts:90:9 › input-otp: separators functionality - ios/ltr › should render separators after the second and third input box
Error: expect(received).toBe(expected) // Object.is equality
Expected: true
Received: false
97 |
98 | await expect(await hasSeparatorAfter(page, 0)).toBe(false);
> 99 | await expect(await hasSeparatorAfter(page, 1)).toBe(true);
| ^
100 | await expect(await hasSeparatorAfter(page, 2)).toBe(true);
101 | await expect(await hasSeparatorAfter(page, 3)).toBe(false);
102 | });
at /ionic/src/components/input-otp/test/separators/input-otp.e2e.ts:99:54
|
|
test-core-screenshot (15, 20)
Process completed with exit code 1.
|
|
[Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:17:9 › datetime: switching months with different number of days - md/ltr › should switch the calendar header when moving to a month with a different number of days:
src/components/datetime/test/datetime.e2e.ts#L32
2) [Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:17:9 › datetime: switching months with different number of days - md/ltr › should switch the calendar header when moving to a month with a different number of days
Error: Timed out 5000ms waiting for expect(locator).toContainText(expected)
Locator: locator('ion-datetime .calendar-month-year')
Expected string: "February 2022"
Received string: "February 2021"
Call log:
- Expect "toContainText" with timeout 5000ms
- waiting for locator('ion-datetime .calendar-month-year')
9 × locator resolved to <div class="calendar-month-year">…</div>
- unexpected value "February 2021"
30 | await page.waitForChanges();
31 |
> 32 | await expect(monthYearToggle).toContainText('February 2022');
| ^
33 | });
34 |
35 | test('should adjust the selected day when moving to a month with a different number of days', async ({ page }) => {
at /ionic/src/components/datetime/test/datetime.e2e.ts:32:37
|
|
[Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:35:9 › datetime: switching months with different number of days - md/ltr › should adjust the selected day when moving to a month with a different number of days:
src/components/datetime/test/datetime.e2e.ts#L48
1) [Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:35:9 › datetime: switching months with different number of days - md/ltr › should adjust the selected day when moving to a month with a different number of days
Retry #2 ───────────────────────────────────────────────────────────────────────────────────────
Error: expected event "ionChange" to have been called 1 times, but it was called 2 times
46 |
47 | await ionChange.next();
> 48 | await expect(ionChange).toHaveReceivedEventTimes(1);
| ^
49 | await expect(datetime).toHaveJSProperty('value', '2022-02-28');
50 | });
51 | });
at /ionic/src/components/datetime/test/datetime.e2e.ts:48:31
|
|
[Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:35:9 › datetime: switching months with different number of days - md/ltr › should adjust the selected day when moving to a month with a different number of days:
src/components/datetime/test/datetime.e2e.ts#L49
1) [Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:35:9 › datetime: switching months with different number of days - md/ltr › should adjust the selected day when moving to a month with a different number of days
Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
Error: Timed out 5000ms waiting for expect(locator).toHaveJSProperty(expected)
Locator: locator('ion-datetime')
Expected: "2022-02-28"
Received: "2021-02-28"
Call log:
- Expect "toHaveJSProperty" with timeout 5000ms
- waiting for locator('ion-datetime')
9 × locator resolved to <ion-datetime locale="en-US" value="2022-01-31" presentation="date" class="ion-color ion-color-primary md datetime-presentation-date datetime-size-fixed datetime-grid hydrated datetime-ready show-month-and-year month-year-picker-open">…</ion-datetime>
- unexpected value "2021-02-28"
47 | await ionChange.next();
48 | await expect(ionChange).toHaveReceivedEventTimes(1);
> 49 | await expect(datetime).toHaveJSProperty('value', '2022-02-28');
| ^
50 | });
51 | });
52 | });
at /ionic/src/components/datetime/test/datetime.e2e.ts:49:30
|
|
[Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:35:9 › datetime: switching months with different number of days - md/ltr › should adjust the selected day when moving to a month with a different number of days:
src/components/datetime/test/datetime.e2e.ts#L49
1) [Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:35:9 › datetime: switching months with different number of days - md/ltr › should adjust the selected day when moving to a month with a different number of days
Error: Timed out 5000ms waiting for expect(locator).toHaveJSProperty(expected)
Locator: locator('ion-datetime')
Expected: "2022-02-28"
Received: "2021-02-28"
Call log:
- Expect "toHaveJSProperty" with timeout 5000ms
- waiting for locator('ion-datetime')
9 × locator resolved to <ion-datetime locale="en-US" value="2022-01-31" presentation="date" class="ion-color ion-color-primary md datetime-presentation-date datetime-size-fixed datetime-grid hydrated datetime-ready show-month-and-year month-year-picker-open">…</ion-datetime>
- unexpected value "2021-02-28"
47 | await ionChange.next();
48 | await expect(ionChange).toHaveReceivedEventTimes(1);
> 49 | await expect(datetime).toHaveJSProperty('value', '2022-02-28');
| ^
50 | });
51 | });
52 | });
at /ionic/src/components/datetime/test/datetime.e2e.ts:49:30
|
|
[Mobile Firefox] › src/components/menu/test/basic/menu.e2e.ts:152:9 › menu: events - md/ltr › should pass role when swiping to close:
src/components/menu/test/basic/menu.e2e.ts#L0
1) [Mobile Firefox] › src/components/menu/test/basic/menu.e2e.ts:152:9 › menu: events - md/ltr › should pass role when swiping to close
Test timeout of 30000ms exceeded.
|
|
verify-screenshots
Process completed with exit code 1.
|
|
🎭 Playwright Run Summary
216 skipped
257 passed (2.4m)
|
|
🎭 Playwright Run Summary
407 passed (2.5m)
|
|
🎭 Playwright Run Summary
1 skipped
534 passed (3.2m)
|
|
🎭 Playwright Run Summary
1 skipped
529 passed (3.2m)
|
|
🎭 Playwright Run Summary
212 skipped
303 passed (3.4m)
|
|
🎭 Playwright Run Summary
1 flaky
[Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:130:11 › radio: a11y - md/ltr/dark › radio: keyboard navigation - md/ltr/dark › using arrow keys should move between enabled radios within group
4 skipped
509 passed (3.6m)
|
|
🎭 Playwright Run Summary
4 skipped
635 passed (3.7m)
|
|
🎭 Playwright Run Summary
638 passed (4.1m)
|
|
🎭 Playwright Run Summary
10 skipped
503 passed (4.6m)
|
|
🎭 Playwright Run Summary
1 flaky
[Mobile Safari] › src/components/input-otp/test/separators/input-otp.e2e.ts:90:9 › input-otp: separators functionality - ios/ltr › should render separators after the second and third input box
5 skipped
509 passed (4.9m)
|
|
🎭 Playwright Run Summary
14 skipped
399 passed (5.0m)
|
|
🎭 Playwright Run Summary
1 skipped
537 passed (6.4m)
|
|
🎭 Playwright Run Summary
10 skipped
526 passed (6.7m)
|
|
🎭 Playwright Run Summary
1 skipped
523 passed (6.8m)
|
|
🎭 Playwright Run Summary
5 skipped
515 passed (7.0m)
|
|
🎭 Playwright Run Summary
4 skipped
528 passed (7.2m)
|
|
🎭 Playwright Run Summary
1 failed
[Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:35:9 › datetime: switching months with different number of days - md/ltr › should adjust the selected day when moving to a month with a different number of days
1 flaky
[Mobile Safari] › src/components/datetime/test/datetime.e2e.ts:17:9 › datetime: switching months with different number of days - md/ltr › should switch the calendar header when moving to a month with a different number of days
2 skipped
507 passed (7.2m)
|
|
🎭 Playwright Run Summary
5 skipped
563 passed (7.3m)
|
|
🎭 Playwright Run Summary
7 skipped
507 passed (7.9m)
|
|
🎭 Playwright Run Summary
1 flaky
[Mobile Firefox] › src/components/menu/test/basic/menu.e2e.ts:152:9 › menu: events - md/ltr › should pass role when swiping to close
14 skipped
496 passed (8.2m)
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
ionic-angular
Expired
|
666 KB |
sha256:42fd7c09c6f8843257b983ff39fc9b925c1f4b4ff87ef8529f3d73e7d4cac2ff
|
|
|
ionic-angular-server
Expired
|
8.57 KB |
sha256:e0a068b1f348bcef275042902e3350318c980454293afc2bea3fe851f7d4f1dc
|
|
|
ionic-core
Expired
|
4.64 MB |
sha256:01a65de499107ca099c91254887fb47f23e6737810a822c887245a7c48c75bd3
|
|
|
ionic-react
Expired
|
211 KB |
sha256:cd82537187923350add9d71d8871d6f88c193e8702a34da2061143156a1373e1
|
|
|
ionic-react-router
Expired
|
27.9 KB |
sha256:c140588221fcddba97ecb7302514a5fd33961d620c8d1ce48ae189d6027a0fc8
|
|
|
ionic-vue
Expired
|
233 KB |
sha256:5c9b6d19efe0b36678b4ebd2000197bf946ef06a94ce7a190a505cb7f5861b04
|
|
|
ionic-vue-router
Expired
|
17.1 KB |
sha256:e8c94d0565bdd341904186a28e1ea7f8888842c1a329997f1e9c880a02c04ef1
|
|
|
test-results-1-20
Expired
|
430 KB |
sha256:5e483a4b07fbb182ced433996088649bab7d63ea5733fc56e0d55775ef3572bf
|
|
|
test-results-10-20
Expired
|
405 KB |
sha256:796e1e817ffcecfff713b169f72c48fa4a7d350b93ed36da0835f665cd322cae
|
|
|
test-results-11-20
Expired
|
1.22 MB |
sha256:25a6c5e6c616e6f9c10da701e6f9632772980fe4453cb9845df37216c815c1a1
|
|
|
test-results-12-20
Expired
|
441 KB |
sha256:9e34924eeb59e5d516a6c51b64b1b0319029d3d65f3292634180555448623288
|
|
|
test-results-13-20
Expired
|
434 KB |
sha256:b95d1dd493515cde4b590cabfe12227e47782ded0c0d176a8f1d4559dbc4ae39
|
|
|
test-results-14-20
Expired
|
397 KB |
sha256:32e0eae21a9e8fe5f506a91a3efc032f735358d65cd4abdb1f79857f66a71378
|
|
|
test-results-15-20
Expired
|
2.75 MB |
sha256:e611abb0b4efc50d322644a7bcd4011737af7fbedee766436270a683434051f7
|
|
|
test-results-16-20
Expired
|
1.14 MB |
sha256:9eb50dc72257875596e3361eb2f6c13d750a779eab0d7c790c13124f4e923970
|
|
|
test-results-17-20
Expired
|
526 KB |
sha256:446fb55d4703e02520d1d4f46e21017587cd5367e03e49178ea47a5884a70e18
|
|
|
test-results-18-20
Expired
|
503 KB |
sha256:2e014fe1701122775ea689aab3af0b2aefba49b8bb3740b9695bcc72178bd22f
|
|
|
test-results-19-20
Expired
|
389 KB |
sha256:f97ed8e5bcd1240d41a55614a1b9bc72eff58183d97e74b0dfd02b0261f4848f
|
|
|
test-results-2-20
Expired
|
466 KB |
sha256:465a47f3aeddc026ea11ae12ca62d2e5979580ac14abe11f78cf4d17141d8586
|
|
|
test-results-20-20
Expired
|
343 KB |
sha256:1e7a79945dbc36032669fe6e8e475bccf612dc3cb3d149ffdfddb2f1b27fdef6
|
|
|
test-results-3-20
Expired
|
422 KB |
sha256:bb6508652cbcec9d3db883bc85794c6a190c93c60da07ba5357433d060779bce
|
|
|
test-results-4-20
Expired
|
1.47 MB |
sha256:6128840bb4404d5fa8e72669cfdfd5ff68639075cbdacf961308178e6f7637f9
|
|
|
test-results-5-20
Expired
|
450 KB |
sha256:614e2a78c577eb3eae658e3da6f8eaf1599b318b73ae02a6484599fb9bfd057f
|
|
|
test-results-6-20
Expired
|
435 KB |
sha256:61277471c5d18031f1f6b529095aa816c3ed4693acd1cee08e9384b13b4bf269
|
|
|
test-results-7-20
Expired
|
340 KB |
sha256:7a37a92ab8b1e77f729a37a3d48b109cb785ea34b07c14214893fda5f573da5e
|
|
|
test-results-8-20
Expired
|
416 KB |
sha256:94e105824f4d2584dd87f2705eabbaccfa8de9a5ff4c335b9cdd6800bcf1a4f1
|
|
|
test-results-9-20
Expired
|
476 KB |
sha256:5d1ffd93fc3d6c2f88aa2143decc827b0737d23e4fc4d5fab9d18f179f840304
|
|