Files
ionic-framework/test/unit/events.unit.js
2014-02-21 11:22:23 -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
});
});
});