bee-js
Version:
Bee is for behavior binding.
15 lines (14 loc) • 385 B
JavaScript
describe("jQuery UI examples", function() {
beforeEach(function(){
bee.filter('jqueryui', {
datepicker: function(element, options){
return $(element).datepicker(options);
}
});
bee.init(document);
// bee.deinit(document);
});
it("it is true", function() {
expect(true).toBe(true);
});
});