doevisualizations
Version:
Data Visualization Library based on RequireJS and D3.js (v4+)
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" );
}
} );
} );