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