jellyfish-web/dashboard-ui/bower_components/dragula.js/test/public-api.js

10 lines
206 B
JavaScript
Raw Normal View History

'use strict';
var test = require('tape');
var dragula = require('..');
test('public api matches expectation', function (t) {
t.equal(typeof dragula, 'function', 'dragula is a function');
t.end();
});