From 93c8ba52206c60a953c871366fd49ef49339fe41 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 15 May 2024 11:01:01 +0200 Subject: [PATCH] Update capabilities.spec.ts Signed-off-by: Max Schmitt --- tests/library/capabilities.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/library/capabilities.spec.ts b/tests/library/capabilities.spec.ts index d713260f5e..fbeeeb65be 100644 --- a/tests/library/capabilities.spec.ts +++ b/tests/library/capabilities.spec.ts @@ -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'); });