Migrate to ember 2.7 + correct jquery null context error + declare shim for popcorn (instead of silencing the JSHint error)
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);
});