server/bo_client/tests/unit/mixins/cell-editing-test.js
author Chloe Laisne <chloe.laisne@gmail.com>
Mon, 26 Sep 2016 19:01:35 +0200
changeset 294 f3dae62a0d8a
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
Add folder icon to treemap

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);
});