/* jshint expr:true */ import { expect } from 'chai'; import { describeModel, it } from 'ember-mocha'; describeModel( 'user', 'Unit:Serializer: user', { // Specify the other units that are required for this test. needs: [ 'transform:moment-utc', 'transform:raw', 'transform:facebook-url-user', 'transform:twitter-url-user', 'model:role' ] }, function() { // Replace this with your real tests. it('serializes records', function() { let record = this.subject(); let serializedRecord = record.serialize(); expect(record).to.be.ok; }); } );