Ghost/ghost/admin/tests/unit/components/gh-trim-focus-input_test.js
Kevin Ansfield 2f4f6db133 Use es6 across client and add ember-suave to enforce rules
no issue
- add ember-suave dependency
- upgrade grunt-jscs dependency
- add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc
- separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc
- standardize es6 usage across client
2015-11-30 10:41:01 +00:00

48 lines
1.1 KiB
JavaScript

import Ember from 'ember';
import {
describeComponent,
it
} from 'ember-mocha';
describeComponent(
'gh-trim-focus-input',
'Unit: Component: gh-trim-focus-input',
{
unit: true
},
function () {
it('trims value on focusOut', function () {
let component = this.subject({
value: 'some random stuff '
});
this.render();
component.$().focusout();
expect(component.$().val()).to.equal('some random stuff');
});
it('does not have the autofocus attribute if not set to focus', function () {
let component = this.subject({
value: 'some text',
focus: false
});
this.render();
expect(component.$().attr('autofocus')).to.not.be.ok;
});
it('has the autofocus attribute if set to focus', function () {
let component = this.subject({
value: 'some text',
focus: true
});
this.render();
expect(component.$().attr('autofocus')).to.be.ok;
});
}
);