force router refresh and close notice or transcript when clicking on navigation links. Fix #0025933
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);
});