Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonEck committed Nov 5, 2022
1 parent fbc7f17 commit d68c473
Show file tree
Hide file tree
Showing 3 changed files with 3,244 additions and 3,882 deletions.
9 changes: 6 additions & 3 deletions e2e/positioning/positioning.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,12 @@ test.describe('positioning', () => {

expect(boundingBoxComplete!.x).toBeCloseTo(boundingBoxInput!.x, 0);

expect(boundingBoxComplete!.y).toBe(
boundingBoxInput!.y + boundingBoxInput!.height
);
expect(
Math.abs(
boundingBoxComplete!.y -
(boundingBoxInput!.y - boundingBoxComplete!.height)
)
).toBeLessThanOrEqual(2);
});

/* TODO: Deactivated because results are way to different in CI test('overflow container with relative position', async ({
Expand Down
Loading

0 comments on commit d68c473

Please sign in to comment.