Files
ionic-framework/test/js/events.unit.js
2013-09-25 10:42:20 -05:00

10 lines
194 B
JavaScript

describe('Ionic Events', function() {
it('Should block all click events', function() {
var a = document.createElement('a');
ionic.trigger('click', {
target: a
});
});
});