yarn-app-test.js 312 B

123456789101112
  1. import { moduleForModel, test } from 'ember-qunit';
  2. moduleForModel('yarn-app', 'Unit | Model | yarn app', {
  3. // Specify the other units that are required for this test.
  4. needs: []
  5. });
  6. test('it exists', function(assert) {
  7. var model = this.subject();
  8. // var store = this.store();
  9. assert.ok(!!model);
  10. });