We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6af4b64 commit 4d21caeCopy full SHA for 4d21cae
βtests/calculator.spec.ts
@@ -5,7 +5,9 @@ test.beforeEach(async ({ page }) => {
5
await page.getByText('Calculator').dblclick();
6
});
7
8
-test('can do some math', async ({ page }) => {
+test('can do some math', async ({ page, browserName }) => {
9
+ // TODO: test error handling in case WebAssembly isn't supported
10
+ test.skip(browserName === 'webkit', 'WebAssembly not supported in WebKit');
11
await page.frameLocator('iframe').getByRole('button', { name: '1' }).click();
12
await page.frameLocator('iframe').getByLabel('add').click();
13
await page.frameLocator('iframe').getByRole('button', { name: '2' }).click();
0 commit comments