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/fetch-live-data-test.js
Markus Grigull f8028d88b7 Move visualization data to mixin
Add live data to edit visualization
Fix stylesheet files
2016-10-12 09:10:41 +02:00

12 lines
400 B
JavaScript

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