mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 06:12:03 +03:00
e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
38 lines
1.5 KiB
JavaScript
38 lines
1.5 KiB
JavaScript
/* jshint expr:true */
|
|
import {expect} from 'chai';
|
|
import {describeModule, it} from 'ember-mocha';
|
|
import {A as emberA} from 'ember-array/utils';
|
|
import NavigationItem from 'ghost-admin/models/navigation-item';
|
|
|
|
describeModule(
|
|
'transform:navigation-settings',
|
|
'Unit: Transform: navigation-settings',
|
|
{},
|
|
function() {
|
|
it('deserializes navigation json', function () {
|
|
let transform = this.subject();
|
|
let serialized = '[{"label":"One","url":"/one"},{"label":"Two","url":"/two"}]';
|
|
let result = transform.deserialize(serialized);
|
|
|
|
expect(result.length).to.equal(2);
|
|
expect(result[0]).to.be.instanceof(NavigationItem);
|
|
expect(result[0].get('label')).to.equal('One');
|
|
expect(result[0].get('url')).to.equal('/one');
|
|
expect(result[1]).to.be.instanceof(NavigationItem);
|
|
expect(result[1].get('label')).to.equal('Two');
|
|
expect(result[1].get('url')).to.equal('/two');
|
|
});
|
|
|
|
it('serializes array of NavigationItems', function () {
|
|
let transform = this.subject();
|
|
let deserialized = emberA([
|
|
NavigationItem.create({label: 'One', url: '/one'}),
|
|
NavigationItem.create({label: 'Two', url: '/two'})
|
|
]);
|
|
let result = transform.serialize(deserialized);
|
|
|
|
expect(result).to.equal('[{"label":"One","url":"/one"},{"label":"Two","url":"/two"}]');
|
|
});
|
|
}
|
|
);
|