pass bo_client to ember 2.8, adjust for the hack around the aupac-typeahead bug in 2.8 (c.f. https://github.com/aupac/ember-aupac-typeahead/issues/23)
import Ember from 'ember';
import CellEditingMixin from '../../../mixins/cell-editing';
import { module, test } from 'qunit';
module('Unit | Mixin | cell editing');
// Replace this with your real tests.
test('it works', function(assert) {
let CellEditingObject = Ember.Object.extend(CellEditingMixin);
let subject = CellEditingObject.create();
assert.ok(subject);
});