style(web): use single quotes in hero expectations

This commit is contained in:
Jiaying Ding
2026-08-07 11:54:45 +08:00
committed by GitHub
parent 9ac6acd7b6
commit 716361844c
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -145,7 +145,7 @@ describe('web e2e: startup auto-selection', () => {
// seat with `visibility:hidden`, which Playwright reports as not visible).
await page.waitForSelector(ROOT_PHASE, { timeout: 15_000 })
expect(await page.locator(ROOT_PHASE).first().getAttribute('data-phase')).toBe('hero')
expect(await page.getByText("Into the unknown").isVisible()).toBe(true)
expect(await page.getByText('Into the unknown').isVisible()).toBe(true)
expect(await page.locator('textarea').first().isVisible()).toBe(true)
releaseHistory()