diff -r d7ab83ecf737 -r c9dd78a43b07 cms/app-client/tests/unit/serializers/transcript-test.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cms/app-client/tests/unit/serializers/transcript-test.js Wed Jul 20 21:08:31 2016 +0200 @@ -0,0 +1,15 @@ +import { moduleForModel, test } from 'ember-qunit'; + +moduleForModel('transcript', 'Unit | Serializer | transcript', { + // Specify the other units that are required for this test. + needs: ['serializer:transcript'] +}); + +// Replace this with your real tests. +test('it serializes records', function(assert) { + let record = this.subject(); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); +});