charts-test.js 344 B

123456789101112
  1. import Ember from 'ember';
  2. import ChartsMixin from '../../../mixins/charts';
  3. import { module, test } from 'qunit';
  4. module('Unit | Mixin | charts');
  5. // Replace this with your real tests.
  6. test('it works', function(assert) {
  7. var ChartsObject = Ember.Object.extend(ChartsMixin);
  8. var subject = ChartsObject.create();
  9. assert.ok(subject);
  10. });