79327442

Date: 2025-01-03 19:13:48
Score: 0.5
Natty:
Report link

I was not using await syntax on my custom expectation.

BAD

test("my test", async({fixture}) => {
  expect(fixture).customExpect()
}

GOOD

test("my test", async({fixture}) => {
  await expect(fixture).customExpect()
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Pinwheeler