feat: make dropdown component public #18312
dry-run.yml
on: pull_request
dry-run
/
Create build tree
2s
Matrix: dry-run / buildComponents
Matrix: dry-run / Components accessibility tests shards
Matrix: dry-run / integTestShards
dry-run
/
Components unit tests
9m 50s
Matrix: dry-run / motionTest
dry-run
/
Build board components
2m 34s
dry-run
/
Build code view components
1m 4s
dry-run
/
Build chat components
1m 23s
dry-run
/
Build chart components
3m 30s
dry-run
/
Components accessibility tests
0s
dry-run
/
Components integration tests
0s
dry-run
/
Demos tests
10m 31s
Annotations
38 errors and 307 warnings
|
dry-run / Components unit tests
Process completed with exit code 1.
|
|
Test-utils › selectors definitions match the snapshot:
src/__tests__/snapshot-tests/documenter.test.ts#L25
expect(received).toMatchSnapshot()
Snapshot name: `Test-utils selectors definitions match the snapshot 1`
- Snapshot - 0
+ Received + 4
@@ -4062,10 +4062,11 @@
"name": "DrawerWrapper",
},
{
"methods": [
{
+ "description": "Returns the dropdown content element.",
"name": "findContent",
"parameters": [
{
"defaultValue": "{
expandToViewport: false
@@ -4082,10 +4083,11 @@
"isNullable": false,
"name": "ElementWrapper",
},
},
{
+ "description": "Returns the dropdown wrapper.",
"name": "findDropdown",
"parameters": [
{
"defaultValue": "{
expandToViewport: false
@@ -4102,10 +4104,11 @@
"isNullable": false,
"name": "DropdownContentWrapper",
},
},
{
+ "description": "Returns the dropdown footer element.",
"name": "findFooter",
"parameters": [
{
"defaultValue": "{
expandToViewport: false
@@ -4122,10 +4125,11 @@
"isNullable": false,
"name": "ElementWrapper",
},
},
{
+ "description": "Returns the dropdown header element.",
"name": "findHeader",
"parameters": [
{
"defaultValue": "{
expandToViewport: false
at Object.<anonymous> (src/__tests__/snapshot-tests/documenter.test.ts:25:42)
|
|
Test-utils › dom definitions match the snapshot:
src/__tests__/snapshot-tests/documenter.test.ts#L21
expect(received).toMatchSnapshot()
Snapshot name: `Test-utils dom definitions match the snapshot 1`
- Snapshot - 0
+ Received + 4
@@ -5815,10 +5815,11 @@
"name": "DrawerWrapper",
},
{
"methods": [
{
+ "description": "Returns the dropdown content element.",
"name": "findContent",
"parameters": [
{
"defaultValue": "{ expandToViewport: false }",
"description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an `expandToViewport` flag.",
@@ -5838,10 +5839,11 @@
},
],
},
},
{
+ "description": "Returns the dropdown wrapper.",
"name": "findDropdown",
"parameters": [
{
"defaultValue": "{ expandToViewport: false }",
"description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an `expandToViewport` flag.",
@@ -5856,10 +5858,11 @@
"isNullable": false,
"name": "DropdownContentWrapper",
},
},
{
+ "description": "Returns the dropdown footer element.",
"name": "findFooter",
"parameters": [
{
"defaultValue": "{ expandToViewport: false }",
"description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an `expandToViewport` flag.",
@@ -5879,10 +5882,11 @@
},
],
},
},
{
+ "description": "Returns the dropdown header element.",
"name": "findHeader",
"parameters": [
{
"defaultValue": "{ expandToViewport: false }",
"description": "* expandToViewport (boolean) - Use this when the component under test is rendered with an `expandToViewport` flag.",
at Object.<anonymous> (src/__tests__/snapshot-tests/documenter.test.ts:21:36)
|
|
Components › definition for dropdown matches the snapshot:
src/__tests__/snapshot-tests/documenter.test.ts#L15
expect(received).toMatchSnapshot(hint)
Snapshot name: `Components definition for dropdown matches the snapshot: dropdown 1`
- Snapshot - 15
+ Received + 24
@@ -8,12 +8,12 @@
must update the `open` prop to close the dropdown.",
"name": "onEscape",
},
{
"cancelable": false,
- "description": "Called when focus enters the dropdown content from outside.
- This fires only once when focus moves into the dropdown, not when moving between elements within it.",
+ "description": "Called when any element inside the dropdown content gains focus.
+ This includes nested interactive elements like buttons, links, or inputs.",
"detailInlineType": {
"name": "Pick<React.FocusEvent<Element, Element>, "relatedTarget" | "target">",
"properties": [
{
"inlineType": {
@@ -85,39 +85,41 @@
"detailType": "Pick<React.FocusEvent<Element, Element>, "relatedTarget" | "target">",
"name": "onFocusLeave",
},
{
"cancelable": false,
- "description": "Called when the user clicks outside the dropdown and trigger.
- The dropdown does not close automatically - the parent component
- must update the `open` prop to close the dropdown.",
+ "description": "Called when the user clicks outside the dropdown. The dropdown does not
+ close automatically - the parent component must update the `open` prop to
+ actually close the dropdown.",
"name": "onOutsideClick",
},
],
"functions": [],
"name": "Dropdown",
"properties": [
{
- "description": "Describedby for the dropdown (recommended when role="dialog")",
+ "description": "ARIA describedby attribute for the dropdown content",
"name": "ariaDescribedby",
"optional": true,
"type": "string",
},
{
- "description": "Aria label for the dropdown content wrapper",
+ "description": "ARIA label for the dropdown content.
+ Use either this or ariaLabelledby, not both.",
"name": "ariaLabel",
"optional": true,
"type": "string",
},
{
- "description": "Labelledby for the dropdown (required when role="dialog")",
+ "description": "ARIA labelledby attribute for the dropdown content.
+ Use either this or ariaLabel, not both.",
"name": "ariaLabelledby",
"optional": true,
"type": "string",
},
{
- "description": "HTML role for the dropdown content wrapper",
+ "description": "ARIA role for the dropdown content (e.g., 'menu', 'listbox', 'dialog')",
"name": "ariaRole",
"optional": true,
"type": "string",
},
{
@@ -133,17 +135,21 @@
"name": "expandToViewport",
"optional": true,
"type": "boolean",
},
{
- "description": "Maximum width constraint for the dropdown in pixels.",
+ "description": "Maximum width constraint for the dropdown.
+ - Number: maximum width in pixels
+ - undefined: no maximum constraint (natural content sizing)",
"name": "maxWidth",
"optional": true,
"type": "number",
},
{
- "description": "Minimum width constraint for the dropdown in pixels.",
+ "description": "Minimum width constraint for the dropdown.
+ - Number: minimum width in pixels
+ - undefined: no maximum constraint (natural content sizing)",
"name": "minWidth",
"optional": true,
"type": "number",
},
{
@@ -153,26 +159,29 @@
"type": "boolean",
},
],
"regions": [
{
- "description": "Dropdown content elements.",
+ "description": "Main content of the dropdown",
"isDefault": false,
"name": "content",
},
{
- "description": "Footer slot fixed at the bottom of the dropdown",
+ "description": "Optional footer content that stays fixed at the bottom while
+ scrolling dropdown content.
+ Typically used to display loading status or action buttons.",
"isDefault": false,
"name": "footer",
|
|
DropdownWrapper test-utils › findOpenDropdown with expandToViewport returns null when closed:
src/test-utils/dom/dropdown/index.ts#L69
TypeError: Cannot read properties of null (reading 'findOpenDropdown')
at DropdownWrapper.findOpenDropdown (src/test-utils/dom/dropdown/index.ts:69:38)
at Object.<anonymous> (src/__tests__/functional-tests/test-utils.test.tsx:283:20)
|
|
dry-run / Components integration tests shards (React 18, shard 3/4)
Process completed with exit code 1.
|
|
Dropdown › dropdown opens down in a container with fixed position:
src/dropdown/__integ__/dropdown.test.ts#L61
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #fixedDropdown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:61:13
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
dry-run / Components integration tests shards (React 16, shard 3/4)
Process completed with exit code 1.
|
|
Dropdown › dropdown opens down in a container with fixed position:
src/dropdown/__integ__/dropdown.test.ts#L61
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #fixedDropdown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:61:13
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
dry-run / Components integration tests shards (React 16, shard 4/4)
Process completed with exit code 1.
|
|
Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
dry-run / Components integration tests shards (React 18, shard 4/4)
Process completed with exit code 1.
|
|
Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
dry-run / Components accessibility tests shards (3/6)
Process completed with exit code 1.
|
|
A11y checks for light default › #/light/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 1
Received array: [{"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
dry-run / Components accessibility tests shards (2/6)
The strategy configuration was canceled because "dry-run.a11yTestShards._3_6" failed
|
|
dry-run / Components accessibility tests shards (2/6)
The operation was canceled.
|
|
A11y checks for dark default › #/dark/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 2
Received array: [{"description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds", "help": "Elements must meet minimum color contrast ratio thresholds", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/color-contrast?application=axeAPI", "id": "color-contrast", "impact": "serious", "nodes": [{"all": [], "any": [{"data": {"bgColor": "#f5f5f5", "contrastRatio": 1.28, "expectedContrastRatio": "4.5:1", "fgColor": "#d5dbdb", "fontSize": "12.0pt (16px)", "fontWeight": "normal", "messageKey": null, "shadowColor": null}, "id": "color-contrast", "impact": "serious", "message": "Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "relatedNodes": [{"html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "target": ["div > div:nth-child(2) > div:nth-child(4)"]}]}], "failureSummary": "Fix any of the following:
Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "impact": "serious", "none": [], "target": ["div > div:nth-child(2) > div:nth-child(4)"]}], "tags": ["cat.color", "wcag2aa", "wcag143", "ACT", "TTv5", "TT13.c"]}, {"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
dry-run / Components accessibility tests shards (5/6)
The strategy configuration was canceled because "dry-run.a11yTestShards._3_6" failed
|
|
dry-run / Components accessibility tests shards (5/6)
The operation was canceled.
|
|
dry-run / Components accessibility tests shards (6/6)
The strategy configuration was canceled because "dry-run.a11yTestShards._3_6" failed
|
|
dry-run / Components accessibility tests shards (6/6)
The operation was canceled.
|
|
dry-run / Create build tree
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: cloudscape-design/actions/.github/actions/create-build-tree@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
dry-run / Build components
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, actions/upload-artifact@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Build components:
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Build components:
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Build components:
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Build components:
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components:
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components:
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components:
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components:
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Build components:
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Build components (React 18)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Build components (React 18):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Build components (React 18):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Build components (React 18):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Build components (React 18):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components (React 18):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components (React 18):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components (React 18):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Build components (React 18):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Build components (React 18):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components accessibility tests shards (4/6)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Components accessibility tests shards (4/6):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components accessibility tests shards (4/6):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components accessibility tests shards (4/6):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components accessibility tests shards (4/6):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (4/6):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (4/6):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (4/6):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (4/6):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components accessibility tests shards (4/6):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Build code view components
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, actions/upload-artifact@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
dry-run / Build chat components
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, actions/upload-artifact@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
dry-run / Build chat components
Unexpected any. Specify a different type
|
|
dry-run / Build chat components
Unexpected any. Specify a different type
|
|
dry-run / Build chat components
Unexpected any. Specify a different type
|
|
dry-run / Build chat components
Unexpected any. Specify a different type
|
|
dry-run / Build chat components
Unexpected any. Specify a different type
|
|
dry-run / Build chat components
Unexpected any. Specify a different type
|
|
dry-run / Build chat components
Prop "className" is forbidden on Components
|
|
dry-run / Build chat components
Prop "className" is forbidden on Components
|
|
dry-run / Build chat components
Prop "id" is forbidden on Components
|
|
dry-run / Build chat components
Unexpected any. Specify a different type
|
|
dry-run / Components accessibility tests shards (1/6)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Components accessibility tests shards (1/6):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components accessibility tests shards (1/6):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components accessibility tests shards (1/6):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components accessibility tests shards (1/6):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (1/6):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (1/6):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (1/6):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (1/6):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components accessibility tests shards (1/6):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Build board components
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, actions/upload-artifact@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
dry-run / Build board components
Prop "id" is forbidden on Components
|
|
dry-run / Build board components
Prop "className" is forbidden on Components
|
|
dry-run / Build board components
Prop "className" is forbidden on Components
|
|
dry-run / Build board components
Prop "id" is forbidden on Components
|
|
dry-run / Build board components
Run autofix to sort these imports!
|
|
dry-run / Build board components
Run autofix to sort these imports!
|
|
dry-run / Build board components
Unexpected any. Specify a different type
|
|
dry-run / Build board components
Unexpected any. Specify a different type
|
|
dry-run / Build board components
Unexpected any. Specify a different type
|
|
dry-run / Build board components
Unexpected any. Specify a different type
|
|
dry-run / Components motion tests (React 16)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Components motion tests (React 16):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components motion tests (React 16):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components motion tests (React 16):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components motion tests (React 16):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 16):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 16):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 16):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 16):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components motion tests (React 16):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Build chart components
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, actions/upload-artifact@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Build chart components
Prop "className" is forbidden on Components
|
|
dry-run / Build chart components
Prop "id" is forbidden on Components
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Build chart components
Unexpected any. Specify a different type
|
|
dry-run / Components motion tests (React 18)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Components motion tests (React 18):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components motion tests (React 18):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components motion tests (React 18):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components motion tests (React 18):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 18):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 18):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 18):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components motion tests (React 18):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components motion tests (React 18):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components unit tests
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Components unit tests:
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components unit tests:
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components unit tests:
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components unit tests:
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components unit tests:
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components unit tests:
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components unit tests:
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components unit tests:
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components unit tests:
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 18, shard 3/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 3: Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: dropdown actions in a sticky column do not cause table scroll to the right:
src/table/__integ__/inline-actions.test.ts#L44
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element body [data-testid="table-with-dropdown-actions"][class*="awsui_root_wih1l"] [class*="awsui_wrapper_wih1l"] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/table/__integ__/inline-actions.test.ts:44:11
at src/table/__integ__/inline-actions.test.ts:33:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 18, shard 3/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 16, shard 3/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 1: Dropdown › dropdown opens down in a container with fixed position:
src/dropdown/__integ__/dropdown.test.ts#L61
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #fixedDropdown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:61:13
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown › dropdown opens up:
src/dropdown/__integ__/dropdown.test.ts#L35
javascript error: WebDriverError: javascript error: Element #largeDropUp [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:35:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L29
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element #largeDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at src/dropdown/__integ__/dropdown.test.ts:29:13
at src/dropdown/__integ__/dropdown.test.ts:13:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown › dropdown opens down:
src/dropdown/__integ__/dropdown.test.ts#L21
javascript error: WebDriverError: javascript error: Element #smallDropDown [class*="awsui_dropdown_9duf6"][data-open=true] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/dropdown/__integ__/dropdown.test.ts:21:36
at src/dropdown/__integ__/dropdown.test.ts:13:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 16, shard 3/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 16, shard 4/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 1: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 16, shard 4/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 18, shard 4/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 1: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown focus trap › focus is not backward-circled:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L60
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:60:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown focus trap › focus is forward-circled between trigger and footer:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L47
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:47:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 3: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Dropdown focus trap › focus is forward-circled between trigger:
src/dropdown/__integ__/dropdown-focus-trap.test.ts#L32
expect(received).resolves.toBe(expected) // Object.is equality
- Expected - 0
+ Received + 11
+ Demo Assets
+ Visual refresh
+ Dark mode
+ Compact mode
+ Disable motion
+ Dropdown focus-trap tests
+ expandToViewport
+ loopFocus
+ disableHeader
+ disableFooter
+ disableContent
Trigger
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:32:59
at src/dropdown/__integ__/dropdown-focus-trap.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 18, shard 4/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 16, shard 1/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 16, shard 1/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 18, shard 1/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 1: desktop › main content area layout should not shift after loading the widget part of the page:
src/app-layout/__integ__/widget-async-loading.test.ts#L21
javascript error: WebDriverError: javascript error: Element [data-awsui-app-layout-widget-loaded="false"] [data-testid="app-layout-content-area"] has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"
at FetchRequest._request (node_modules/webdriver/build/node.js:2008:19)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at Browser.wrapCommandFn (node_modules/@wdio/utils/build/index.js:982:23)
at src/app-layout/__integ__/widget-async-loading.test.ts:21:66
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: classic › iframe=true › MultiAppLayout simple › secondary layout does not vertically overflow the primary one:
src/app-layout/__integ__/multi-app-layout.test.ts#L70
expect(received).toBeLessThanOrEqual(expected)
Expected: <= 1313
Received: 3530.953125
at src/app-layout/__integ__/multi-app-layout.test.ts:70:43
at BasePageObject.runInsideIframe (node_modules/@cloudscape-design/browser-test-tools/page-objects/base.js:243:9)
at src/app-layout/__integ__/multi-app-layout.test.ts:68:11
at src/app-layout/__integ__/multi-app-layout.test.ts:24:11
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 18, shard 1/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 16, shard 2/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 1: Details popover › can be pinned and unpinned in a bar chart with mouse:
src/mixed-line-bar-chart/__integ__/mixed-line-bar-chart.test.ts#L356
expect(received).resolves.toBe(expected) // Object.is equality
Expected: false
Received: true
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/mixed-line-bar-chart/__integ__/mixed-line-bar-chart.test.ts:356:72
at src/mixed-line-bar-chart/__integ__/common.ts:54:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Table (in viewport: true) › Emits a mark only for visible tables which are loaded completely:
src/table/__integ__/performance-marks.test.ts#L42
expect(received).toEqual(expected) // deep equality
- Expected - 1
+ Received + 1
Object {
"header": "A table without the Header component",
- "inViewport": true,
+ "inViewport": false,
"instanceIdentifier": Any<String>,
"loading": false,
"source": "awsui",
}
at src/table/__integ__/performance-marks.test.ts:42:31
at src/table/__integ__/performance-marks.test.ts:30:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 16, shard 2/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components integration tests shards (React 18, shard 2/4)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 1: Details popover › can be pinned and unpinned in a bar chart with mouse:
src/mixed-line-bar-chart/__integ__/mixed-line-bar-chart.test.ts#L356
expect(received).resolves.toBe(expected) // Object.is equality
Expected: false
Received: true
at Object.toBe (node_modules/expect/build/index.js:174:22)
at src/mixed-line-bar-chart/__integ__/mixed-line-bar-chart.test.ts:356:72
at src/mixed-line-bar-chart/__integ__/common.ts:54:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: Cards responsiveness › applies cardsPerRow property changes:
src/cards/__integ__/responsive.test.ts#L22
expect(received).resolves.toEqual()
Received promise rejected instead of resolved
Rejected to value: [javascript error: WebDriverError: javascript error: Element body [class*="awsui_root_p8a6i"] [class*="awsui_card_p8a6i"]:nth-child(1) has not been found at the page
(Session info: chrome=145.0.7632.116) when running "execute/sync" with method "POST"]
at expect (node_modules/expect/build/index.js:113:15)
at CardsPage.testCardsPerRow (src/cards/__integ__/responsive.test.ts:22:11)
at src/cards/__integ__/responsive.test.ts:67:7
at src/cards/__integ__/responsive.test.ts:40:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components integration tests shards (React 18, shard 2/4):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Demos tests
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, actions/upload-artifact@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Unexpected any. Specify a different type
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Do not use '.jsx', '.tsx' file extension for files without JSX
|
|
dry-run / Demos tests
Unexpected any. Specify a different type
|
|
dry-run / Components accessibility tests shards (3/6)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 3: A11y checks for light default › #/light/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 1
Received array: [{"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: A11y checks for light default › #/light/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 1
Received array: [{"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: A11y checks for light default › #/light/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 1
Received array: [{"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components accessibility tests shards (3/6):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components accessibility tests shards (3/6):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components accessibility tests shards (3/6):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components accessibility tests shards (3/6):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (3/6):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (3/6):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (3/6):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (3/6):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components accessibility tests shards (3/6):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components accessibility tests shards (2/6)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
RETRY 3: A11y checks for dark default › #/dark/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 2
Received array: [{"description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds", "help": "Elements must meet minimum color contrast ratio thresholds", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/color-contrast?application=axeAPI", "id": "color-contrast", "impact": "serious", "nodes": [{"all": [], "any": [{"data": {"bgColor": "#f5f5f5", "contrastRatio": 1.28, "expectedContrastRatio": "4.5:1", "fgColor": "#d5dbdb", "fontSize": "12.0pt (16px)", "fontWeight": "normal", "messageKey": null, "shadowColor": null}, "id": "color-contrast", "impact": "serious", "message": "Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "relatedNodes": [{"html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "target": ["div > div:nth-child(2) > div:nth-child(4)"]}]}], "failureSummary": "Fix any of the following:
Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "impact": "serious", "none": [], "target": ["div > div:nth-child(2) > div:nth-child(4)"]}], "tags": ["cat.color", "wcag2aa", "wcag143", "ACT", "TTv5", "TT13.c"]}, {"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 2: A11y checks for dark default › #/dark/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 2
Received array: [{"description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds", "help": "Elements must meet minimum color contrast ratio thresholds", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/color-contrast?application=axeAPI", "id": "color-contrast", "impact": "serious", "nodes": [{"all": [], "any": [{"data": {"bgColor": "#f5f5f5", "contrastRatio": 1.28, "expectedContrastRatio": "4.5:1", "fgColor": "#d5dbdb", "fontSize": "12.0pt (16px)", "fontWeight": "normal", "messageKey": null, "shadowColor": null}, "id": "color-contrast", "impact": "serious", "message": "Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "relatedNodes": [{"html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "target": ["div > div:nth-child(2) > div:nth-child(4)"]}]}], "failureSummary": "Fix any of the following:
Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "impact": "serious", "none": [], "target": ["div > div:nth-child(2) > div:nth-child(4)"]}], "tags": ["cat.color", "wcag2aa", "wcag143", "ACT", "TTv5", "TT13.c"]}, {"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
RETRY 1: A11y checks for dark default › #/dark/dropdown/bugbash?visualRefresh=false:
src/__a11y__/a11y-page-object.ts#L96
expect(received).toHaveLength(expected)
Expected length: 0
Received length: 2
Received array: [{"description": "Ensures the contrast between foreground and background colors meets WCAG 2 AA minimum contrast ratio thresholds", "help": "Elements must meet minimum color contrast ratio thresholds", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/color-contrast?application=axeAPI", "id": "color-contrast", "impact": "serious", "nodes": [{"all": [], "any": [{"data": {"bgColor": "#f5f5f5", "contrastRatio": 1.28, "expectedContrastRatio": "4.5:1", "fgColor": "#d5dbdb", "fontSize": "12.0pt (16px)", "fontWeight": "normal", "messageKey": null, "shadowColor": null}, "id": "color-contrast", "impact": "serious", "message": "Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "relatedNodes": [{"html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "target": ["div > div:nth-child(2) > div:nth-child(4)"]}]}], "failureSummary": "Fix any of the following:
Element has insufficient color contrast of 1.28 (foreground color: #d5dbdb, background color: #f5f5f5, font size: 12.0pt (16px), font weight: normal). Expected contrast ratio of 4.5:1", "html": "<div style=\"padding: 20px; background: rgb(245, 245, 245);\">Scroll down to test dropdown positioning at bottom of viewport</div>", "impact": "serious", "none": [], "target": ["div > div:nth-child(2) > div:nth-child(4)"]}], "tags": ["cat.color", "wcag2aa", "wcag143", "ACT", "TTv5", "TT13.c"]}, {"description": "Ensures the order of headings is semantically correct", "help": "Heading levels should only increase by one", "helpUrl": "https://dequeuniversity.com/rules/axe/4.7/heading-order?application=axeAPI", "id": "heading-order", "impact": "moderate", "nodes": [{"all": [], "any": [{"data": null, "id": "heading-order", "impact": "moderate", "message": "Heading order invalid", "relatedNodes": []}], "failureSummary": "Fix any of the following:
Heading order invalid", "html": "<h3>Dropdown Props</h3>", "impact": "moderate", "none": [], "target": [".awsui_child_18582_1vc4x_149:nth-child(1) > h3"]}], "tags": ["cat.semantics", "best-practice"]}]
at A11yPageObject.assertNoAxeViolations (src/__a11y__/a11y-page-object.ts:96:24)
at src/__a11y__/run-a11y-tests.ts:17:5
at Object.<anonymous> (node_modules/@cloudscape-design/browser-test-tools/use-browser.js:36:13)
|
|
|
|
dry-run / Components accessibility tests shards (2/6):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components accessibility tests shards (2/6):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components accessibility tests shards (2/6):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components accessibility tests shards (2/6):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (2/6):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (2/6):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (2/6):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (2/6):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components accessibility tests shards (2/6):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
dry-run / Components accessibility tests shards (5/6)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
|
|
dry-run / Components accessibility tests shards (5/6):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components accessibility tests shards (5/6):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components accessibility tests shards (5/6):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components accessibility tests shards (5/6):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (5/6):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (5/6):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (5/6):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (6/6)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4, actions/setup-node@v4, cloudscape-design/actions/.github/actions/patch-local-dependencies@main, cloudscape-design/actions/.github/actions/unlock-dependencies@main. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
dry-run / Components accessibility tests shards (5/6):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components accessibility tests shards (5/6):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
|
|
|
dry-run / Components accessibility tests shards (6/6):
src/app-layout/__integ__/app-layout-focus-delegation.test.ts#L192
Unexpected 'todo' comment: 'todo - investigate why resize observer...'
|
|
dry-run / Components accessibility tests shards (6/6):
src/app-layout/__integ__/app-layout-drawers.test.ts#L227
Unexpected 'todo' comment: 'todo: resolve split panel positioning...'
|
|
dry-run / Components accessibility tests shards (6/6):
pages/utils/permutations-view.tsx#L18
Unexpected 'todo' comment: 'TODO: Pretty-print original JSX,...'
|
|
dry-run / Components accessibility tests shards (6/6):
pages/steps/with-updates.page.tsx#L167
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (6/6):
pages/steps/with-updates.page.tsx#L155
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (6/6):
pages/steps/with-updates.page.tsx#L143
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (6/6):
pages/steps/with-updates.page.tsx#L127
JSX element uses aria-live property. Prefer using LiveRegion component instead
|
|
dry-run / Components accessibility tests shards (6/6):
pages/form-field/form-field-columns.page.tsx#L20
Unexpected 'todo' comment: 'TODO: Replace this with Select'
|
|
dry-run / Components accessibility tests shards (6/6):
pages/button/alignment.page.tsx#L25
Unexpected 'todo' comment: 'TODO: uncomment when we add...'
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
cloudscape-design-board-components
|
301 KB |
sha256:103dc15cd65690c5c49333ee802012f2c8fc8a5228490265eb28c3c184186771
|
|
|
cloudscape-design-chart-components
|
432 KB |
sha256:f446bb9148dae1a709c0a3723520795e6f3f7ae301277629b24965c37c128ee4
|
|
|
cloudscape-design-chat-components
|
97.2 KB |
sha256:19310fa7e656ce9eb14e409e8b1ca3af9b33f3c1fdd3d5b9942464d095af67b6
|
|
|
cloudscape-design-code-view
|
47.2 KB |
sha256:3c7786915a513320613eb8a8a8f5a7635ac247c357eeef763907a12ebc8e1737
|
|
|
cloudscape-design-components
|
8.86 MB |
sha256:b6cce70bd0447dac307f42c7165222678df21107504d9cf3cccec0b00c337ce5
|
|