public-api.js 206 B

123456789
  1. 'use strict';
  2. var test = require('tape');
  3. var dragula = require('..');
  4. test('public api matches expectation', function (t) {
  5. t.equal(typeof dragula, 'function', 'dragula is a function');
  6. t.end();
  7. });