We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd5405 commit cbc2fc4Copy full SHA for cbc2fc4
tests/animate/animate.spec.ts
@@ -89,7 +89,7 @@ test.describe("animate() methods", () => {
89
const boundingBox = await box.boundingBox()
90
expect(boundingBox?.x).toBeCloseTo(0)
91
const text = await box.innerText()
92
- expect(text).not.toBe("finished")
+ expect(text).toBe("finished")
93
})
94
95
@@ -292,7 +292,7 @@ test.describe("animate() methods", () => {
292
// Ensure a style has been applied
293
const style = await box.getAttribute("style")
294
expect(style).toContain("transform: translateX")
295
- expect(await box.innerText()).not.toBe("finished")
+ expect(await box.innerText()).toBe("finished")
296
297
298
0 commit comments