Stencil Nightly Build #718
stencil-nightly.yml
on: schedule
build-core-with-stencil-nightly
1m 11s
Matrix: test-core-screenshot
test-core-clean-build
12s
test-core-lint
49s
test-core-spec
45s
verify-screenshots
3s
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
3s
verify-test-vue-e2e
3s
Annotations
6 errors and 20 notices
|
[Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:130:11 › radio: a11y - md/ltr › radio: keyboard navigation - md/ltr › using arrow keys should move between enabled radios within group:
src/components/radio/test/a11y/radio.e2e.ts#L134
2) [Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:130:11 › radio: a11y - md/ltr › radio: keyboard navigation - md/ltr › 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 Chrome] › src/components/radio/test/a11y/radio.e2e.ts:117:11 › radio: a11y - md/ltr › radio: keyboard navigation - md/ltr › tabbing should switch between radio groups:
src/components/radio/test/a11y/radio.e2e.ts#L122
1) [Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:117:11 › radio: a11y - md/ltr › radio: keyboard navigation - md/ltr › tabbing should switch between radio groups
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"
120 |
121 | await pageUtils.pressKeys('Tab');
> 122 | await expect(firstGroupRadios.nth(0)).toBeFocused();
| ^
123 |
124 | await pageUtils.pressKeys('Tab');
125 | await expect(secondGroupRadios.nth(0)).toBeFocused();
at /ionic/src/components/radio/test/a11y/radio.e2e.ts:122:47
|
|
[Mobile Safari] › src/components/router/test/guards/router.e2e.ts:6:9 › router: guards - ios/ltr › guards should be run on initial load:
src/components/router/test/guards/router.e2e.ts#L9
1) [Mobile Safari] › src/components/router/test/guards/router.e2e.ts:6:9 › router: guards - ios/ltr › guards should be run on initial load
Error: expect(received).toContain(expected) // indexOf
Expected substring: "#/child/1"
Received string: "http://localhost:3333/src/components/router/test/guards#/guard-initial-page?ionic:_testing=true&ionic:mode=ios&rtl=undefined&palette=light"
7 | await page.goto(`/src/components/router/test/guards#/guard-initial-page`, config);
8 |
> 9 | expect(page.url()).toContain('#/child/1');
| ^
10 | });
11 | });
12 | });
at /ionic/src/components/router/test/guards/router.e2e.ts:9:26
|
|
[Mobile Safari] › src/components/datetime/test/show-adjacent-days/datetime.e2e.ts:16:9 › datetime: show adjacent days - ios/ltr › should not have visual regressions with a custom styled calendar:
src/components/datetime/test/show-adjacent-days/datetime.e2e.ts#L20
2) [Mobile Safari] › src/components/datetime/test/show-adjacent-days/datetime.e2e.ts:16:9 › datetime: show adjacent days - ios/ltr › should not have visual regressions with a custom styled calendar
Error: expect(locator).toHaveScreenshot(expected)
4908 pixels (ratio 0.05 of all image pixels) are different.
Snapshot: datetime-show-adjacent-days-custom-calendar-ios-ltr.png
Call log:
- Expect "toHaveScreenshot(datetime-show-adjacent-days-custom-calendar-ios-ltr.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#custom-calendar-days')
- locator resolved to <ion-datetime value="2023-06-15" presentation="date" show-adjacent-days="true" id="custom-calendar-days" class="ion-color ion-color-primary ios datetime-presentation-date datetime-size-fixed datetime-grid hydrated">…</ion-datetime>
- taking element screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- attempting scroll into view action
- waiting for element to be stable
- 4908 pixels (ratio 0.05 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#custom-calendar-days')
- locator resolved to <ion-datetime value="2023-06-15" presentation="date" show-adjacent-days="true" id="custom-calendar-days" class="ion-color ion-color-primary ios datetime-presentation-date datetime-size-fixed datetime-grid hydrated">…</ion-datetime>
- taking element screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- attempting scroll into view action
- waiting for element to be stable
- captured a stable screenshot
- 4908 pixels (ratio 0.05 of all image pixels) are different.
18 | await page.locator('.datetime-ready').first().waitFor();
19 | const datetime = page.locator('#custom-calendar-days');
> 20 | await expect(datetime).toHaveScreenshot(screenshot(`datetime-show-adjacent-days-custom-calendar`));
| ^
21 | });
22 |
23 | test('should not have visual regressions with specific date disabled', async ({ page }) => {
at /ionic/src/components/datetime/test/show-adjacent-days/datetime.e2e.ts:20:30
|
|
[Mobile Safari] › src/components/datetime/test/custom/datetime.e2e.ts:32:9 › datetime: custom - ios/ltr › should allow styling calendar days in grid style datetimes:
src/components/datetime/test/custom/datetime.e2e.ts#L42
1) [Mobile Safari] › src/components/datetime/test/custom/datetime.e2e.ts:32:9 › datetime: custom - ios/ltr › should allow styling calendar days in grid style datetimes
Error: expect(locator).toHaveScreenshot(expected)
4509 pixels (ratio 0.04 of all image pixels) are different.
Snapshot: datetime-custom-calendar-days-ios-ltr.png
Call log:
- Expect "toHaveScreenshot(datetime-custom-calendar-days-ios-ltr.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('#custom-calendar-days')
- locator resolved to <ion-datetime value="2023-06-15" presentation="date" id="custom-calendar-days" class="ion-color ion-color-primary ios datetime-presentation-date datetime-size-fixed datetime-grid hydrated">…</ion-datetime>
- taking element screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- attempting scroll into view action
- waiting for element to be stable
- 4509 pixels (ratio 0.04 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('#custom-calendar-days')
- locator resolved to <ion-datetime value="2023-06-15" presentation="date" id="custom-calendar-days" class="ion-color ion-color-primary ios datetime-presentation-date datetime-size-fixed datetime-grid hydrated">…</ion-datetime>
- taking element screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- attempting scroll into view action
- waiting for element to be stable
- captured a stable screenshot
- 4509 pixels (ratio 0.04 of all image pixels) are different.
40 | });
41 |
> 42 | await expect(datetime).toHaveScreenshot(screenshot(`datetime-custom-calendar-days`));
| ^
43 | });
44 | });
45 | });
at /ionic/src/components/datetime/test/custom/datetime.e2e.ts:42:30
|
|
[Mobile Safari] › src/components/item/test/inputs/item.e2e.ts:8:9 › item: inputs - md/ltr › should not have visual regressions:
src/components/item/test/inputs/item.e2e.ts#L12
1) [Mobile Safari] › src/components/item/test/inputs/item.e2e.ts:8:9 › item: inputs - md/ltr › should not have visual regressions
Error: expect(page).toHaveScreenshot(expected)
1744 pixels (ratio 0.01 of all image pixels) are different.
Snapshot: item-inputs-md-ltr.png
Call log:
- Expect "toHaveScreenshot(item-inputs-md-ltr.png)" with timeout 5000ms
- verifying given screenshot expectation
- taking page screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- 1744 pixels (ratio 0.01 of all image pixels) are different.
- waiting 100ms before taking screenshot
- taking page screenshot
- disabled all CSS animations
- waiting for fonts to load...
- fonts loaded
- captured a stable screenshot
- 1744 pixels (ratio 0.01 of all image pixels) are different.
10 |
11 | await page.setIonViewport();
> 12 | await expect(page).toHaveScreenshot(screenshot(`item-inputs`));
| ^
13 | });
14 | });
15 | });
at /ionic/src/components/item/test/inputs/item.e2e.ts:12:26
|
|
🎭 Playwright Run Summary
216 skipped
257 passed (2.4m)
|
|
🎭 Playwright Run Summary
407 passed (2.6m)
|
|
🎭 Playwright Run Summary
1 skipped
534 passed (3.1m)
|
|
🎭 Playwright Run Summary
1 skipped
529 passed (3.2m)
|
|
🎭 Playwright Run Summary
212 skipped
303 passed (3.4m)
|
|
🎭 Playwright Run Summary
4 skipped
635 passed (3.7m)
|
|
🎭 Playwright Run Summary
2 flaky
[Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:117:11 › radio: a11y - md/ltr › radio: keyboard navigation - md/ltr › tabbing should switch between radio groups
[Mobile Chrome] › src/components/radio/test/a11y/radio.e2e.ts:130:11 › radio: a11y - md/ltr › radio: keyboard navigation - md/ltr › using arrow keys should move between enabled radios within group
4 skipped
508 passed (3.8m)
|
|
🎭 Playwright Run Summary
638 passed (4.1m)
|
|
🎭 Playwright Run Summary
10 skipped
503 passed (4.8m)
|
|
🎭 Playwright Run Summary
14 skipped
399 passed (5.0m)
|
|
🎭 Playwright Run Summary
5 skipped
510 passed (5.1m)
|
|
🎭 Playwright Run Summary
1 skipped
537 passed (6.4m)
|
|
🎭 Playwright Run Summary
1 flaky
[Mobile Safari] › src/components/router/test/guards/router.e2e.ts:6:9 › router: guards - ios/ltr › guards should be run on initial load
10 skipped
525 passed (6.5m)
|
|
🎭 Playwright Run Summary
4 skipped
528 passed (6.9m)
|
|
🎭 Playwright Run Summary
1 skipped
523 passed (7.1m)
|
|
🎭 Playwright Run Summary
2 flaky
[Mobile Safari] › src/components/datetime/test/custom/datetime.e2e.ts:32:9 › datetime: custom - ios/ltr › should allow styling calendar days in grid style datetimes
[Mobile Safari] › src/components/datetime/test/show-adjacent-days/datetime.e2e.ts:16:9 › datetime: show adjacent days - ios/ltr › should not have visual regressions with a custom styled calendar
2 skipped
507 passed (7.2m)
|
|
🎭 Playwright Run Summary
1 flaky
[Mobile Safari] › src/components/item/test/inputs/item.e2e.ts:8:9 › item: inputs - md/ltr › should not have visual regressions
5 skipped
514 passed (7.2m)
|
|
🎭 Playwright Run Summary
5 skipped
563 passed (7.3m)
|
|
🎭 Playwright Run Summary
14 skipped
497 passed (8.0m)
|
|
🎭 Playwright Run Summary
7 skipped
507 passed (8.2m)
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
ionic-angular
Expired
|
667 KB |
sha256:80f264c8418fe4b67f9d0f64c8f92667e38de2e777376d50aca2ea0cd7706e95
|
|
|
ionic-angular-server
Expired
|
8.54 KB |
sha256:5ae0c106b46fec2341eb59c209f86db6263f5d6673137af19937f4124e6bd487
|
|
|
ionic-core
Expired
|
4.64 MB |
sha256:71609ccefdd2c15f27d02a2688dfb69648e764f352d72d5a3af94c4f3d69a9bf
|
|
|
ionic-react
Expired
|
211 KB |
sha256:00a1909011bd36e1f130397a660d531416470a325b92baf6c6542b32c3c325a0
|
|
|
ionic-react-router
Expired
|
27.9 KB |
sha256:54c136c5390cb95a0818de38b95e0c65cd1fb308f8702f6d532d43627c38e92a
|
|
|
ionic-vue
Expired
|
233 KB |
sha256:4133576ea21df6b4e5b5ab51359a8c09d492043b0d59245689c7876986fa92c3
|
|
|
ionic-vue-router
Expired
|
17.1 KB |
sha256:5e51e19743511faf53e36bbf300a65be12190b450104d147e9fcdabdcfe4560d
|
|
|
test-results-1-20
Expired
|
430 KB |
sha256:ef5200162302a2b25c5105d9ad83711f06d471df00333d2065689b6391ec9da5
|
|
|
test-results-10-20
Expired
|
405 KB |
sha256:b06ef6afdd37ec1e5ad0a7b1f625663b6c0b73866a9ab0d200cc58c569cb4524
|
|
|
test-results-11-20
Expired
|
1.59 MB |
sha256:1f5874c8468e3ed9e395a1854fc592a0124e452170cf2fc5c3dc49e61b245bec
|
|
|
test-results-12-20
Expired
|
441 KB |
sha256:4358e4da5bc26d03cb8e0437e2f6712a649b6d0bcd16da762dabb647fa8d5348
|
|
|
test-results-13-20
Expired
|
434 KB |
sha256:53b091e62355ce1f5dbd8dc81f4bb6e69743d9c80b443758dca242d737a83b1b
|
|
|
test-results-14-20
Expired
|
397 KB |
sha256:a5b86e591608bde05372eb226d7cc7d51de05b02622262dc82f504e596230052
|
|
|
test-results-15-20
Expired
|
1.86 MB |
sha256:dd3ec6b4abda04a56b4d85ffde10583570381fb0d5ababcd4090e1931e5183ac
|
|
|
test-results-16-20
Expired
|
419 KB |
sha256:2f4823cc0377d402afcb6e39a9eba7fa356b19d19254c87a4e96bc9fc28cd307
|
|
|
test-results-17-20
Expired
|
1.43 MB |
sha256:00132ba65f1d4ab7f264de2c107eb1cb07c91eab8f5557e235a223274de3bd8a
|
|
|
test-results-18-20
Expired
|
1.23 MB |
sha256:f0fde5e178b09895fcb8e608bb84940f6088f4fff6a645c90a978643f732e884
|
|
|
test-results-19-20
Expired
|
389 KB |
sha256:737b8252b54840086e13e097cad7dee1e776cc51590b2df61ef812dc5ab7bd02
|
|
|
test-results-2-20
Expired
|
467 KB |
sha256:dc353ff4e4e858582c0209de29a42e4dd65bdd306463b2f6153662081d25b5ef
|
|
|
test-results-20-20
Expired
|
343 KB |
sha256:e8a6b4b768617687f8fb7649398cb3071875e1b5ddf71059b26cb052e64dad57
|
|
|
test-results-3-20
Expired
|
422 KB |
sha256:b8f73e6d453d21fb21855098ffd084ebea71c164d1cd84091ad176c173c8c4c0
|
|
|
test-results-4-20
Expired
|
519 KB |
sha256:93ddbc7743cc188ad3643f1279921362efd08214ebc6b215f7a881dd1e74fb0b
|
|
|
test-results-5-20
Expired
|
450 KB |
sha256:da45c85e403c9ee4aedad3793e2f6049465f4df5a7e09587021c0c73663aebba
|
|
|
test-results-6-20
Expired
|
435 KB |
sha256:ec64110b1cf6745c257c5a59823828da43a2befc7cf5205cb4dbde92e8111e96
|
|
|
test-results-7-20
Expired
|
340 KB |
sha256:b68c81bc114a15d54253e99ff241343648bc38ed1a6bc904cc975ddcd0ed0203
|
|
|
test-results-8-20
Expired
|
418 KB |
sha256:c120750eff6baa58b1fb98f88fd3e14974c105ea82f09b06d61d4b4b81e4a90f
|
|
|
test-results-9-20
Expired
|
476 KB |
sha256:14b51e70beb20ffd4996b9171fbc3c0a3ed80d4fca375207f4e67d2eb7aa8dd6
|
|