Skip to content

Commit

Permalink
feat(webkit): roll to r2008 (#30818)
Browse files Browse the repository at this point in the history
Signed-off-by: Max Schmitt <max@schmitt.mx>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Max Schmitt <max@schmitt.mx>
  • Loading branch information
3 people authored May 15, 2024
1 parent fb319e6 commit fda9051
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/playwright-core/browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
{
"name": "webkit",
"revision": "2007",
"revision": "2008",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1446",
Expand Down
3 changes: 2 additions & 1 deletion tests/library/capabilities.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ it('SharedArrayBuffer should work @smoke', async function({ contextFactory, http
expect(await page.evaluate(() => typeof SharedArrayBuffer)).toBe('function');
});

it('Web Assembly should work @smoke', async function({ page, server }) {
it('Web Assembly should work @smoke', async ({ page, server, browserName, platform }) => {
it.fixme(browserName === 'webkit' && platform === 'win32', 'Windows JIT is disabled: https://bugs.webkit.org/show_bug.cgi?id=273854');
await page.goto(server.PREFIX + '/wasm/table2.html');
expect(await page.evaluate('loadTable()')).toBe('42, 83');
});
Expand Down

0 comments on commit fda9051

Please sign in to comment.