import { module, test } from 'qunit'; import { setupTest } from 'ember-qunit'; module('Unit | Model | produkte', function(hooks) { setupTest(hooks); test('it has the right type', function(assert) { let store = this.owner.lookup('service:store'); let model = store.createRecord('produkt', {titel: 'Testprodukt'}); assert.ok(model); }); });