feat(themes): enable all palettes #18023
build.yml
on: pull_request
build-core
1m 30s
Matrix: test-core-screenshot
test-core-clean-build
16s
test-core-lint
1m 8s
test-core-spec
54s
verify-screenshots
2s
Matrix: test-angular-e2e
Matrix: test-react-e2e
Matrix: test-react-router-e2e
Matrix: test-vue-e2e
verify-test-angular-e2e
3s
verify-test-react-e2e
2s
verify-test-react-router-e2e
2s
verify-test-vue-e2e
3s
Annotations
4 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
3) [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: expect(locator).toBeFocused() failed
Locator: locator('#first-group ion-radio').first()
Expected: focused
Received: inactive
Timeout: 5000ms
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: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: expect(locator).toBeFocused() failed
Locator: locator('#first-group ion-radio').first()
Expected: focused
Received: inactive
Timeout: 5000ms
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: expect(locator).toBeFocused() failed
Locator: locator('#first-group ion-radio').first()
Expected: focused
Received: inactive
Timeout: 5000ms
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 Firefox] › src/components/tab-bar/test/basic/tab-bar.e2e.ts:9:9 › tab-bar: basic - ionic/md/ltr/light › should not have visual regressions:
src/components/tab-bar/test/basic/tab-bar.e2e.ts#L45
1) [Mobile Firefox] › src/components/tab-bar/test/basic/tab-bar.e2e.ts:9:9 › tab-bar: basic - ionic/md/ltr/light › should not have visual regressions
Error: expect(locator).toHaveScreenshot(expected) failed
Locator: locator('ion-tab-bar')
533 pixels (ratio 0.03 of all image pixels) are different.
Snapshot: tab-bar-default-ionic-md-ltr-light.png
Call log:
- Expect "toHaveScreenshot(tab-bar-default-ionic-md-ltr-light.png)" with timeout 5000ms
- verifying given screenshot expectation
- waiting for locator('ion-tab-bar')
- locator resolved to <ion-tab-bar role="tablist" selected-tab="2" class="ionic tab-bar-full tab-bar-round hydrated">…</ion-tab-bar>
- 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
- 533 pixels (ratio 0.03 of all image pixels) are different.
- waiting 100ms before taking screenshot
- waiting for locator('ion-tab-bar')
- locator resolved to <ion-tab-bar role="tablist" selected-tab="2" class="ionic tab-bar-full tab-bar-round hydrated">…</ion-tab-bar>
- 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
- 533 pixels (ratio 0.03 of all image pixels) are different.
43 | const tabBar = page.locator('ion-tab-bar');
44 |
> 45 | await expect(tabBar).toHaveScreenshot(screenshot(`tab-bar-default`));
| ^
46 | });
47 | });
48 | });
at /ionic/src/components/tab-bar/test/basic/tab-bar.e2e.ts:45:28
|
|
🎭 Playwright Run Summary
360 skipped
272 passed (2.2m)
|
|
🎭 Playwright Run Summary
368 skipped
307 passed (3.4m)
|
|
🎭 Playwright Run Summary
2 skipped
667 passed (3.6m)
|
|
🎭 Playwright Run Summary
8 skipped
688 passed (3.9m)
|
|
🎭 Playwright Run Summary
1 skipped
676 passed (4.0m)
|
|
🎭 Playwright Run Summary
8 skipped
663 passed (4.4m)
|
|
🎭 Playwright Run Summary
152 skipped
707 passed (4.8m)
|
|
🎭 Playwright Run Summary
3 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
[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
676 passed (5.2m)
|
|
🎭 Playwright Run Summary
14 skipped
491 passed (6.0m)
|
|
🎭 Playwright Run Summary
18 skipped
640 passed (6.6m)
|
|
🎭 Playwright Run Summary
5 skipped
681 passed (7.1m)
|
|
🎭 Playwright Run Summary
3 skipped
664 passed (7.8m)
|
|
🎭 Playwright Run Summary
12 skipped
685 passed (8.2m)
|
|
🎭 Playwright Run Summary
13 skipped
659 passed (8.6m)
|
|
🎭 Playwright Run Summary
1 skipped
656 passed (8.9m)
|
|
🎭 Playwright Run Summary
1 flaky
[Mobile Firefox] › src/components/tab-bar/test/basic/tab-bar.e2e.ts:9:9 › tab-bar: basic - ionic/md/ltr/light › should not have visual regressions
13 skipped
711 passed (8.8m)
|
|
🎭 Playwright Run Summary
5 skipped
668 passed (9.0m)
|
|
🎭 Playwright Run Summary
4 skipped
738 passed (9.5m)
|
|
🎭 Playwright Run Summary
18 skipped
617 passed (9.5m)
|
|
🎭 Playwright Run Summary
14 skipped
682 passed (10.0m)
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
ionic-angular
Expired
|
776 KB |
sha256:001a24b76eb514ee6d2cd62a6e376abfa2785de69046bc6e882d643182f2b3dd
|
|
|
ionic-angular-server
Expired
|
8.58 KB |
sha256:5cbc56862f3f4e0d6e1085ea1ce628e440d11b104aa455645b68d7c7d04cae15
|
|
|
ionic-core
Expired
|
5.2 MB |
sha256:f085a2260961732f693abad8baaec798c4a40f6f069fbdc15865403875be7203
|
|
|
ionic-react
Expired
|
314 KB |
sha256:5b9aa759c8f2f209b699a8dc2606ca15cd7b0135efce935007728a89698ca99e
|
|
|
ionic-react-router
Expired
|
27.9 KB |
sha256:a130d52a91c33a0a111f739cd9918ed04b547978938edf3ebbc040a70b034720
|
|
|
ionic-vue
Expired
|
345 KB |
sha256:6266e4294c13176b673576fc1fa655cd53443adc1c6f7a942ba719db2341955a
|
|
|
ionic-vue-router
Expired
|
17.1 KB |
sha256:c26b5586a14183377593320b43563ddcbf304aadf0c774d5b487be70b22bdd53
|
|
|
test-results-1-20
Expired
|
515 KB |
sha256:d9d789b89aec145c90dc5ddbcc2a349930bd00af18c6bab94fd48ada2a6c63a0
|
|
|
test-results-10-20
Expired
|
459 KB |
sha256:7c0f7f1d1b6e7cb2bcb2fa12580cec532c04f57f48b06d5be2de94a2e8eb58d6
|
|
|
test-results-11-20
Expired
|
2.09 MB |
sha256:e010ef55e5bc395fc058fe879e0a98b67ffb851e7dae2cde10210b6774b5bb21
|
|
|
test-results-12-20
Expired
|
499 KB |
sha256:68c637641adcd9070cb6ddc39011964b453d49e4ab548a20437d4d95ff7155f0
|
|
|
test-results-13-20
Expired
|
474 KB |
sha256:6b26a6a65f5e17b826a04a3465ebec7a100056a2c825e71e1b665f7034dbd148
|
|
|
test-results-14-20
Expired
|
443 KB |
sha256:be8fdf191a3bd011e41516df7c5bddbbf0e068e2740408b33e2b48588eb03e4c
|
|
|
test-results-15-20
Expired
|
478 KB |
sha256:2d666a59998063add33dd4f1998c91e27bd1c8d0ee2a2f5108c06c1373a94bdc
|
|
|
test-results-16-20
Expired
|
494 KB |
sha256:4ba9f88e2497d777c7f3910ecd68581ab064389905a18b680bff561a30f7c41b
|
|
|
test-results-17-20
Expired
|
577 KB |
sha256:2b28ee05e87916c737f046240c205300cd9c0bc3ac2b12cffd90b074b41f6321
|
|
|
test-results-18-20
Expired
|
570 KB |
sha256:2500d944a5a8dcfca0c5ca3d85b462ff2bf0e0d5275cf3ed1eb7705bec658429
|
|
|
test-results-19-20
Expired
|
459 KB |
sha256:b6144e5e811a58a3f8d439e120747ca69b04740b975e7949f19a8c819b89daa6
|
|
|
test-results-2-20
Expired
|
522 KB |
sha256:97b31ddda2e56d23e798f38feb0a0d9533fac9f617f9c8935ef39143a33b7474
|
|
|
test-results-20-20
Expired
|
355 KB |
sha256:42059b9ea6f0f51943e28ed133d76fedd4e628fe70115de09dd4bad13209eb1f
|
|
|
test-results-3-20
Expired
|
456 KB |
sha256:13f30c74b4ca4d920ef2f099f832b5c28bc88397481d732076043e19d6450f5e
|
|
|
test-results-4-20
Expired
|
600 KB |
sha256:667a4c4e51bd8265347787d9553001915e78512bdc8d7f3d911241d26d0d572a
|
|
|
test-results-5-20
Expired
|
506 KB |
sha256:27528ccaf117693e2edd77589a1597e5222e49bf39e84e8d7530da08efd5ccec
|
|
|
test-results-6-20
Expired
|
1.28 MB |
sha256:e4133c5e3fafa1edc6b8f5d108b71398d4affe401f0cdf5da81d7ecfaaecb68b
|
|
|
test-results-7-20
Expired
|
371 KB |
sha256:9779530eb9e6f5077d6c6e377235a284fd223d220a1b8d166fe306c91e7e0fa8
|
|
|
test-results-8-20
Expired
|
469 KB |
sha256:b4f48efb9bea18da640230000f12ff69dd3750888101b5bf1e81f54bea71e918
|
|
|
test-results-9-20
Expired
|
504 KB |
sha256:ed7f905ebec566bc4ecfe237a78454ebb5082a152b49d82b54c21eb47ab85778
|
|