Skip to content

Commit

Permalink
chore(vx-event): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hshoff committed Aug 20, 2020
1 parent 0989b5d commit b864aaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vx-event/test/localPoint.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ describe('localPoint', () => {

test('it should return null if called with no arguments', () => {
// @ts-ignore
expect(localPoint()).toBe(null);
expect(localPoint()).toBeNull();
// @ts-ignore
expect(localPointGeneric(document.createElement('div'))).toBe(null);
expect(localPointGeneric(document.createElement('div'))).toBeNull();
});

test('it should handle localPoint(event) and get node from event.target', () => {
Expand Down

0 comments on commit b864aaf

Please sign in to comment.