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.
2 parents 14879f8 + 1b48f05 commit 04473c0Copy full SHA for 04473c0
e2e/tests/canvas.spec.ts
@@ -49,8 +49,8 @@ test.describe("Canvas tests", () => {
49
await codeGraph.clickZoomOut();
50
await codeGraph.clickCenter();
51
const updatedGraph = await codeGraph.getCanvasScaling();
52
- expect(Math.abs(initialGraph.scaleX - updatedGraph.scaleX)).toBeLessThanOrEqual(0.05);
53
- expect(Math.abs(initialGraph.scaleY - updatedGraph.scaleY)).toBeLessThanOrEqual(0.05);
+ expect(Math.abs(initialGraph.scaleX - updatedGraph.scaleX)).toBeLessThanOrEqual(0.1);
+ expect(Math.abs(initialGraph.scaleY - updatedGraph.scaleY)).toBeLessThanOrEqual(0.1);
54
55
})
56
0 commit comments