Skip to content

Commit

Permalink
test: fix failing tests after upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranis committed Mar 25, 2024
1 parent f8d5fe8 commit 1e5306c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions demos/playground/src/__tests__/e2e/CopyAndPaste.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2816,7 +2816,7 @@ test.describe('CopyAndPaste', () => {
await assertHTML(
page,
html`
<ul class="PlaygroundEditorTheme__ul">
<ul class="PlaygroundEditorTheme__ul PlaygroundEditorTheme__checklist">
<li
role="checkbox"
tabindex="-1"
Expand Down Expand Up @@ -2852,7 +2852,7 @@ test.describe('CopyAndPaste', () => {
await assertHTML(
page,
html`
<ul class="PlaygroundEditorTheme__ul">
<ul class="PlaygroundEditorTheme__ul PlaygroundEditorTheme__checklist">
<li
role="checkbox"
tabindex="-1"
Expand Down
10 changes: 5 additions & 5 deletions demos/playground/src/__tests__/e2e/List.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ test.describe('Nested List', () => {
await assertHTML(
page,
html`
<ul class="PlaygroundEditorTheme__ul">
<ul class="PlaygroundEditorTheme__ul PlaygroundEditorTheme__checklist">
<li
aria-checked="true"
role="checkbox"
Expand All @@ -1360,7 +1360,7 @@ test.describe('Nested List', () => {
<li
class="PlaygroundEditorTheme__listItem PlaygroundEditorTheme__listItemUnchecked PlaygroundEditorTheme__nestedListItem"
value="3">
<ul class="PlaygroundEditorTheme__ul">
<ul class="PlaygroundEditorTheme__ul PlaygroundEditorTheme__checklist">
<li
aria-checked="false"
role="checkbox"
Expand Down Expand Up @@ -1396,7 +1396,7 @@ test.describe('Nested List', () => {
<li
class="PlaygroundEditorTheme__listItem PlaygroundEditorTheme__nestedListItem"
value="3">
<ul class="PlaygroundEditorTheme__ul">
<ul class="PlaygroundEditorTheme__ul PlaygroundEditorTheme__checklist">
<li
aria-checked="false"
role="checkbox"
Expand All @@ -1415,7 +1415,7 @@ test.describe('Nested List', () => {
await assertHTML(
page,
html`
<ul class="PlaygroundEditorTheme__ul">
<ul class="PlaygroundEditorTheme__ul PlaygroundEditorTheme__checklist">
<li
aria-checked="false"
role="checkbox"
Expand All @@ -1437,7 +1437,7 @@ test.describe('Nested List', () => {
<li
class="PlaygroundEditorTheme__listItem PlaygroundEditorTheme__listItemUnchecked PlaygroundEditorTheme__nestedListItem"
value="3">
<ul class="PlaygroundEditorTheme__ul">
<ul class="PlaygroundEditorTheme__ul PlaygroundEditorTheme__checklist">
<li
aria-checked="false"
role="checkbox"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@
}
input[type='number'] {
appearance: textfield;
-moz-appearance: textfield;
}
</style>

0 comments on commit 1e5306c

Please sign in to comment.