jquery-ui
Version:
A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.
22 lines (16 loc) • 405 B
JavaScript
define( [
"qunit",
"jquery",
"lib/helper"
], function( QUnit, $, helper ) {
return $.extend( helper, {
shouldDrop: function( assert ) {
// Todo: actually implement this
assert.ok( true, "missing test - untested code is broken code" );
},
shouldNotDrop: function( assert ) {
// Todo: actually implement this
assert.ok( true, "missing test - untested code is broken code" );
}
} );
} );