2015-03-20 13:56:36 +00:00

16 lines
287 B
JavaScript

import {
moduleForModel,
test
} from 'ember-qunit';
moduleForModel('friend', {
// Specify the other units that are required for this test.
needs: []
});
test('it exists', function(assert) {
var model = this.subject();
// var store = this.store();
assert.ok(!!model);
});