1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-30 00:00:13 +01:00
VILLASweb/tests/unit/mixins/draggable-test.js
Markus Grigull 15d29d23b2 Add jQuery UI
Add resizeable, droppable and draggable mixins
Add API_HOST in environment.js
2016-07-15 12:09:31 +02:00

12 lines
372 B
JavaScript

import Ember from 'ember';
import DraggableMixin from 'villasweb-frontend/mixins/draggable';
import { module, test } from 'qunit';
module('Unit | Mixin | draggable');
// Replace this with your real tests.
test('it works', function(assert) {
let DraggableObject = Ember.Object.extend(DraggableMixin);
let subject = DraggableObject.create();
assert.ok(subject);
});