mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
10 lines
206 B
JavaScript
10 lines
206 B
JavaScript
![]() |
'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();
|
||
|
});
|