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/websocket-live-stream-mixin-test.js
Markus Grigull 5b09486d3c Move websocket live stream into mixin
Add simulator to websocket message
Add history to simulator-data
2016-07-26 14:40:23 +02:00

12 lines
468 B
JavaScript

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