open-consul/ui-v2/tests/unit/mixins/with-resizing-test.js

13 lines
423 B
JavaScript

import EmberObject from '@ember/object';
import WithResizingMixin from 'consul-ui/mixins/with-resizing';
import { module, test } from 'qunit';
module('Unit | Mixin | with resizing', function() {
// Replace this with your real tests.
test('it works', function(assert) {
let WithResizingObject = EmberObject.extend(WithResizingMixin);
let subject = WithResizingObject.create();
assert.ok(subject);
});
});