Ghost/ghost/admin/tests/unit/transforms/twitter-url-user-test.js
Kevin Ansfield e74e2e039e Update code to match eslint rules
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
2016-11-14 13:26:00 +00:00

27 lines
801 B
JavaScript

/* jshint expr:true */
import {expect} from 'chai';
import {describeModule, it} from 'ember-mocha';
describeModule(
'transform:twitter-url-user',
'Unit: Transform: twitter-url-user',
{},
function() {
it('deserializes twitter url', function () {
let transform = this.subject();
let serialized = '@testuser';
let result = transform.deserialize(serialized);
expect(result).to.equal('https://twitter.com/testuser');
});
it('serializes url to twitter username', function () {
let transform = this.subject();
let deserialized = 'https://twitter.com/testuser';
let result = transform.serialize(deserialized);
expect(result).to.equal('@testuser');
});
}
);