Skip to content

Commit 0ed9751

Browse files
committed
test(tap): expect falsy instead of false
1 parent df9c074 commit 0ed9751

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/utils/tap.unit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ describe('Ionic Tap', function() {
314314
stopPropagation: function() { this.stoppedPropagation = true; },
315315
preventDefault: function() { this.preventedDefault = true; }
316316
};
317-
expect( tapMouseUp(e) ).toEqual(false);
317+
expect( tapMouseUp(e) ).toBeFalsy();
318318
expect( e.stoppedPropagation ).toBeUndefined();
319319
expect( e.preventedDefault ).toBeUndefined();
320320
});

0 commit comments

Comments
 (0)