Skip to content

Commit

Permalink
redundant commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeaehrlich committed Mar 2, 2022
1 parent 64afb31 commit b2d34e2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Movable/Movable.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ describe('<Movable/>', () => {
expect(stopPropagation.calledOnce).toEqual(true);
expect(preventDefault.calledOnce).toEqual(true);
});

it('onMove()', () => {
const handleOnMove = sinon.spy();
const wrapper = mount(<Movable onMove={handleOnMove}/>);
Expand Down Expand Up @@ -78,6 +79,7 @@ describe('<Movable/>', () => {
expect(event.dx).toEqual(-10);
expect(event.dy).toEqual(-10);
});

it('onEndMove()', () => {
const handleOnEndMove = sinon.spy();
const wrapper = mount(<Movable onEndMove={handleOnEndMove}/>);
Expand Down

0 comments on commit b2d34e2

Please sign in to comment.