mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-30 00:00:13 +01:00
15 lines
423 B
JavaScript
15 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) {
|
|
let record = this.subject();
|
|
|
|
let serializedRecord = record.serialize();
|
|
|
|
assert.ok(serializedRecord);
|
|
});
|