lemo-crm/web/tests/unit/serializers/application-test.js
Shaun Chyxion 528e09dbdd init
2017-06-04 22:56:26 +08:00

16 lines
423 B
JavaScript

import { moduleForModel, test } from 'ember-qunit';
moduleForModel('application', 'Unit | Serializer | application', {
// Specify the other units that are required for this test.
needs: ['serializer:application']
});
// Replace this with your real tests.
test('it serializes records', function(assert) {
var record = this.subject();
var serializedRecord = record.serialize();
assert.ok(serializedRecord);
});