Skip to content

Commit

Permalink
chore: update point-to-client-rect.spec.ts (#8860)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Sep 12, 2024
1 parent 552b7ce commit b48a033
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions projects/cdk/utils/dom/test/point-to-client-rect.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {tuiPointToClientRect} from '@taiga-ui/cdk';
describe('tuiPointToClientRect', () => {
it('default', () => {
expect(tuiPointToClientRect()).toEqual(
// @ts-ignore
expect.objectContaining({
x: 0,
y: 0,
Expand All @@ -19,7 +18,6 @@ describe('tuiPointToClientRect', () => {

it('x=100,y=200', () => {
expect(tuiPointToClientRect(100, 200)).toEqual(
// @ts-ignore
expect.objectContaining({
x: 100,
y: 200,
Expand Down

0 comments on commit b48a033

Please sign in to comment.