mirror of
https://github.com/tuxis-ie/nsedit.git
synced 2025-04-20 20:13:40 +03:00
21 lines
405 B
JavaScript
21 lines
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" );
|
|
}
|
|
} );
|
|
|
|
} );
|