mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
b77326bc7a
Ember-cli, Ember, & Ember Data 1.13.x upgrades
37 lines
879 B
JavaScript
37 lines
879 B
JavaScript
/* jshint expr:true */
|
|
import Ember from 'ember';
|
|
import {expect} from 'chai';
|
|
import {
|
|
describeComponent,
|
|
it
|
|
} from 'ember-mocha';
|
|
|
|
describeComponent(
|
|
'gh-navitem-url-input',
|
|
'Unit: Component: gh-navitem-url-input',
|
|
{
|
|
unit: true
|
|
},
|
|
function () {
|
|
it('identifies a URL as the base URL', function () {
|
|
var component = this.subject({
|
|
url: '',
|
|
baseUrl: 'http://example.com/'
|
|
});
|
|
|
|
this.render();
|
|
|
|
Ember.run(function () {
|
|
component.set('value', 'http://example.com/');
|
|
});
|
|
|
|
expect(component.get('isBaseUrl')).to.be.ok;
|
|
|
|
Ember.run(function () {
|
|
component.set('value', 'http://example.com/go/');
|
|
});
|
|
|
|
expect(component.get('isBaseUrl')).to.not.be.ok;
|
|
});
|
|
}
|
|
);
|