mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-30 00:00:13 +01:00

plot-abstract is the base object for all plots. Size changes on plots are saved to the server on the save button. Add sortable mixin.
12 lines
366 B
JavaScript
12 lines
366 B
JavaScript
import Ember from 'ember';
|
|
import SortableMixin from 'villasweb-frontend/mixins/sortable';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Mixin | sortable');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
let SortableObject = Ember.Object.extend(SortableMixin);
|
|
let subject = SortableObject.create();
|
|
assert.ok(subject);
|
|
});
|