diff -r c37671f197c3 -r 9df336529b2f cms/app-client/tests/unit/serializers/discourse-test.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cms/app-client/tests/unit/serializers/discourse-test.js Sun Dec 04 00:23:52 2016 +0100 @@ -0,0 +1,15 @@ +import { moduleForModel, test } from 'ember-qunit'; + +moduleForModel('discourse', 'Unit | Serializer | discourse', { + // Specify the other units that are required for this test. + needs: ['serializer:discourse'] +}); + +// Replace this with your real tests. +test('it serializes records', function(assert) { + let record = this.subject(); + + let serializedRecord = record.serialize(); + + assert.ok(serializedRecord); +});