fix: auto fix:

This commit is contained in:
Kevin Nadro
2025-02-10 10:21:31 -06:00
parent 3085b0c2c7
commit 66fe3c7892

View File

@ -79,10 +79,10 @@ test.describe('Test network and connection issues', () => {
} }
) )
test('Engine disconnect & reconnect in sketch mode', {tag: '@skipLocalEngine'}, async ({ test(
page, 'Engine disconnect & reconnect in sketch mode',
homePage, { tag: '@skipLocalEngine' },
}) => { async ({ page, homePage }) => {
// TODO: Don't skip Mac for these. After `window.tearDown` is working in Safari, these should work on webkit // TODO: Don't skip Mac for these. After `window.tearDown` is working in Safari, these should work on webkit
const networkToggle = page.getByTestId('network-toggle') const networkToggle = page.getByTestId('network-toggle')
@ -219,5 +219,6 @@ test.describe('Test network and connection issues', () => {
await expect( await expect(
page.getByRole('button', { name: 'Exit Sketch' }) page.getByRole('button', { name: 'Exit Sketch' })
).not.toBeVisible() ).not.toBeVisible()
}) }
)
}) })