Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency playwright to v1.45.3 #2941

Merged
merged 3 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"lit-analyzer": "2.0.3",
"madge": "7.0.0",
"npm-run-all2": "6.2.2",
"playwright": "1.44.1",
"playwright": "1.45.3",
"postcss": "8.4.40",
"prettier": "3.3.3",
"react": "18.3.1",
Expand All @@ -156,7 +156,7 @@
"@web/dev-server-core": "0.7.1",
"jackspeak": "2.1.1",
"lit": "3.1.4",
"playwright": "1.44.1",
"playwright": "1.45.3",
"prettier": "3.3.3"
},
"prettier": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,14 @@ snapshots["sbb-option selected active Chrome"] =
`<p>
{
"role": "WebArea",
"name": ""
"name": "",
"children": [
{
"role": "listbox",
"name": "",
"orientation": "vertical"
}
]
}
</p>
`;
Expand All @@ -81,7 +88,14 @@ snapshots["sbb-option disabled Chrome"] =
`<p>
{
"role": "WebArea",
"name": ""
"name": "",
"children": [
{
"role": "listbox",
"name": "",
"orientation": "vertical"
}
]
}
</p>
`;
Expand All @@ -94,9 +108,15 @@ snapshots["sbb-option selected active Firefox"] =
"name": "",
"children": [
{
"role": "option",
"role": "listbox",
"name": "",
"selected": true
"children": [
{
"role": "option",
"name": "1",
"selected": true
}
]
}
]
}
Expand All @@ -111,9 +131,15 @@ snapshots["sbb-option disabled Firefox"] =
"name": "",
"children": [
{
"role": "option",
"role": "listbox",
"name": "",
"disabled": true
"children": [
{
"role": "option",
"name": "1",
"disabled": true
}
]
}
]
}
Expand Down
7 changes: 5 additions & 2 deletions src/elements/option/option/option.snapshot.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,12 @@ describe(`sbb-option`, () => {
});

testA11yTreeSnapshot(
html`<sbb-option value="1" selected active></sbb-option>`,
html`<div role="listbox"><sbb-option value="1" selected active>1</sbb-option></div>`,
'selected active',
);

testA11yTreeSnapshot(html`<sbb-option value="1" disabled></sbb-option>`, 'disabled');
testA11yTreeSnapshot(
html`<div role="listbox"><sbb-option value="1" disabled>1</sbb-option></div>`,
'disabled',
);
});
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ snapshots["sbb-step-label A11y tree Firefox"] =
"name": "",
"children": [
{
"role": "tab",
"name": "Label"
"role": "text",
"name": ""
}
]
}
Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8417,17 +8417,17 @@ pkg-types@^1.1.1:
mlly "^1.7.1"
pathe "^1.1.2"

playwright-core@1.44.1:
version "1.44.1"
resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.44.1.tgz#53ec975503b763af6fc1a7aa995f34bc09ff447c"
integrity sha512-wh0JWtYTrhv1+OSsLPgFzGzt67Y7BE/ZS3jEqgGBlp2ppp1ZDj8c+9IARNW4dwf1poq5MgHreEM2KV/GuR4cFA==
playwright-core@1.45.3:
version "1.45.3"
resolved "https://registry.yarnpkg.com/playwright-core/-/playwright-core-1.45.3.tgz#e77bc4c78a621b96c3e629027534ee1d25faac93"
integrity sha512-+ym0jNbcjikaOwwSZycFbwkWgfruWvYlJfThKYAlImbxUgdWFO2oW70ojPm4OpE4t6TAo2FY/smM+hpVTtkhDA==

playwright@1.44.1, playwright@^1.22.2:
version "1.44.1"
resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.44.1.tgz#5634369d777111c1eea9180430b7a184028e7892"
integrity sha512-qr/0UJ5CFAtloI3avF95Y0L1xQo6r3LQArLIg/z/PoGJ6xa+EwzrwO5lpNr/09STxdHuUoP2mvuELJS+hLdtgg==
playwright@1.45.3, playwright@^1.22.2:
version "1.45.3"
resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.45.3.tgz#75143f73093a6e1467f7097083d2f0846fb8dd2f"
integrity sha512-QhVaS+lpluxCaioejDZ95l4Y4jSFCsBvl2UZkpeXlzxmqS+aABr5c82YmfMHrL6x27nvrvykJAFpkzT2eWdJww==
dependencies:
playwright-core "1.44.1"
playwright-core "1.45.3"
optionalDependencies:
fsevents "2.3.2"

Expand Down
Loading