mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-30 00:00:13 +01:00
12 lines
372 B
JavaScript
12 lines
372 B
JavaScript
import Ember from 'ember';
|
|
import ResizableMixin from 'villasweb-frontend/mixins/resizable';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Mixin | resizable');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
let ResizableObject = Ember.Object.extend(ResizableMixin);
|
|
let subject = ResizableObject.create();
|
|
assert.ok(subject);
|
|
});
|