jquery-ui/tests/unit/droppable/helper.js
Michał Gołębiowski-Owczarek 70dae67b73
Build: Migrate from JSHint & JSCS to ESLint
Fixes #15393
Closes gh-1958
2021-06-07 00:58:12 +02:00

23 lines
419 B
JavaScript

define( [
"qunit",
"jquery",
"lib/helper"
], function( QUnit, $, helper ) {
"use strict";
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" );
}
} );
} );