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/droppable-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 DroppableMixin from 'villasweb-frontend/mixins/droppable';
import { module, test } from 'qunit';
module('Unit | Mixin | droppable');
// Replace this with your real tests.
test('it works', function(assert) {
let DroppableObject = Ember.Object.extend(DroppableMixin);
let subject = DroppableObject.create();
assert.ok(subject);
});