server/bo_client/tests/unit/mixins/click-outside-mixin-test.js
changeset 28 b0b56e0f8c7f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/server/bo_client/tests/unit/mixins/click-outside-mixin-test.js	Fri Jan 15 15:35:00 2016 +0100
@@ -0,0 +1,12 @@
+import Ember from 'ember';
+import ClickOutsideMixinMixin from '../../../mixins/click-outside-mixin';
+import { module, test } from 'qunit';
+
+module('Unit | Mixin | click outside mixin');
+
+// Replace this with your real tests.
+test('it works', function(assert) {
+  let ClickOutsideMixinObject = Ember.Object.extend(ClickOutsideMixinMixin);
+  let subject = ClickOutsideMixinObject.create();
+  assert.ok(subject);
+});