cms/app-client/tests/unit/serializers/theme-test.js
author Chloe Laisne <chloe.laisne@gmail.com>
Wed, 24 Aug 2016 18:32:41 +0200
changeset 268 19313f7c04ab
parent 176 d1baf7ccecc8
permissions -rw-r--r--
External notice .active:hover state color + Cancel bubble up event for external notice

import { moduleForModel, test } from 'ember-qunit';

moduleForModel('theme', 'Unit | Serializer | theme', {
    // Specify the other units that are required for this test.
    needs: ['serializer:theme']
});

// Replace this with your real tests.
test('it serializes records', function(assert) {
    let record = this.subject();

    let serializedRecord = record.serialize();

    assert.ok(serializedRecord);
});