Remix - Testing
Examine this Playwright test snippet:
What is the mistake causing this test to fail?
await page.goto('https://example.com');
await page.click('#submit');
await expect(page.locator('#success')).toBeVisible;What is the mistake causing this test to fail?
