This commit is contained in:
Adam Chalmers
2025-06-05 10:46:48 -05:00
committed by GitHub
parent 4bb17c192f
commit b5f81cb84a

View File

@ -169,7 +169,8 @@ test(
// error text on hover
await page.hover('.cm-lint-marker-error')
const crypticErrorText = 'tag requires a value with type `tag`, but found string'
const crypticErrorText =
'tag requires a value with type `tag`, but found string'
await expect(page.getByText(crypticErrorText).first()).toBeVisible()
// black pixel means the scene has been cleared.
@ -367,7 +368,8 @@ test(
// error text on hover
await page.hover('.cm-lint-marker-error')
const crypticErrorText = 'tag requires a value with type `tag`, but found string'
const crypticErrorText =
'tag requires a value with type `tag`, but found string'
await expect(page.getByText(crypticErrorText).first()).toBeVisible()
// black pixel means the scene has been cleared.
@ -405,7 +407,8 @@ test(
// error text on hover
await page.hover('.cm-lint-marker-error')
const crypticErrorText = 'tag requires a value with type `tag`, but found string'
const crypticErrorText =
'tag requires a value with type `tag`, but found string'
await expect(page.getByText(crypticErrorText).first()).toBeVisible()
}
)