Skip to content

Commit

Permalink
chore: Remove console.log (#3169)
Browse files Browse the repository at this point in the history
  • Loading branch information
just-boris authored Jan 6, 2025
1 parent 46c5afd commit 9a3b48e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/popover/__integ__/in-split-panel.popover.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ describe('Popover does not overflow split panel', () => {
async function expectPopoverWithinSplitPanelBoundaries(page: BasePageObject) {
const splitPanelPosition = await page.getBoundingBox(splitPanelSelector);
const popoverContainerPosition = await page.getBoundingBox(popoverContainerSelector);
console.log({ splitPanelPosition, popoverContainerPosition });
expect(popoverContainerPosition.left).toBeGreaterThanOrEqual(splitPanelPosition.left);
expect(popoverContainerPosition.top).toBeGreaterThanOrEqual(splitPanelPosition.top);
expect(popoverContainerPosition.right).toBeLessThanOrEqual(splitPanelPosition.right);
Expand Down

0 comments on commit 9a3b48e

Please sign in to comment.