server/bo_client/tests/unit/mixins/click-outside-mixin-test.js
changeset 28 b0b56e0f8c7f
equal deleted inserted replaced
27:a2342f26c9de 28:b0b56e0f8c7f
       
     1 import Ember from 'ember';
       
     2 import ClickOutsideMixinMixin from '../../../mixins/click-outside-mixin';
       
     3 import { module, test } from 'qunit';
       
     4 
       
     5 module('Unit | Mixin | click outside mixin');
       
     6 
       
     7 // Replace this with your real tests.
       
     8 test('it works', function(assert) {
       
     9   let ClickOutsideMixinObject = Ember.Object.extend(ClickOutsideMixinMixin);
       
    10   let subject = ClickOutsideMixinObject.create();
       
    11   assert.ok(subject);
       
    12 });