Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioCastigliano committed Apr 5, 2024
1 parent 9def0ab commit 3c9b9a0
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,3 +203,36 @@ snapshots["sbb-checkbox-panel Checked - A11y tree Chrome"] =
`;
/* end snapshot sbb-checkbox-panel Checked - A11y tree Chrome */

snapshots["sbb-checkbox-panel Unchecked - A11y tree Firefox"] =
`<p>
{
"role": "document",
"name": "",
"children": [
{
"role": "checkbox",
"name": "​ Label"
}
]
}
</p>
`;
/* end snapshot sbb-checkbox-panel Unchecked - A11y tree Firefox */

snapshots["sbb-checkbox-panel Checked - A11y tree Firefox"] =
`<p>
{
"role": "document",
"name": "",
"children": [
{
"role": "checkbox",
"name": "​ Label",
"checked": true
}
]
}
</p>
`;
/* end snapshot sbb-checkbox-panel Checked - A11y tree Firefox */

Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,13 @@ snapshots["sbb-radio-button-group A11y tree Chrome"] =
`;
/* end snapshot sbb-radio-button-group A11y tree Chrome */

snapshots["sbb-radio-button-group A11y tree Firefox"] =
`<p>
{
"role": "document",
"name": ""
}
</p>
`;
/* end snapshot sbb-radio-button-group A11y tree Firefox */

Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,19 @@ snapshots["sbb-radio-button-panel A11y tree Chrome"] =
`;
/* end snapshot sbb-radio-button-panel A11y tree Chrome */

snapshots["sbb-radio-button-panel A11y tree Firefox"] =
`<p>
{
"role": "document",
"name": "",
"children": [
{
"role": "radio",
"name": "Label Suffix Subtext"
}
]
}
</p>
`;
/* end snapshot sbb-radio-button-panel A11y tree Firefox */

Original file line number Diff line number Diff line change
Expand Up @@ -237,3 +237,31 @@ snapshots["sbb-selection-expansion-panel A11y tree Chrome"] =
`;
/* end snapshot sbb-selection-expansion-panel A11y tree Chrome */

snapshots["sbb-selection-expansion-panel A11y tree Firefox"] =
`<p>
{
"role": "document",
"name": "",
"children": [
{
"role": "text leaf",
"name": "%"
},
{
"role": "text leaf",
"name": "from CHF"
},
{
"role": "text leaf",
"name": "19.99"
},
{
"role": "checkbox",
"name": "​ Value one Suffix Subtext , collapsed"
}
]
}
</p>
`;
/* end snapshot sbb-selection-expansion-panel A11y tree Firefox */

0 comments on commit 3c9b9a0

Please sign in to comment.