2016-04-19 18:55:10 +03:00
|
|
|
/* jshint expr:true */
|
2017-05-29 21:50:03 +03:00
|
|
|
import Pretender from 'pretender';
|
2016-04-19 18:55:10 +03:00
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
2016-07-05 17:29:05 +03:00
|
|
|
import wait from 'ember-test-helpers/wait';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {describe, it} from 'mocha';
|
|
|
|
import {expect} from 'chai';
|
2017-08-22 10:53:26 +03:00
|
|
|
import {run} from '@ember/runloop';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {setupComponentTest} from 'ember-mocha';
|
2016-04-19 18:55:10 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
describe('Integration: Component: gh-search-input', function () {
|
|
|
|
setupComponentTest('gh-search-input', {
|
2016-04-19 18:55:10 +03:00
|
|
|
integration: true
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2016-06-30 17:45:02 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
let server;
|
2016-06-30 17:45:02 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
beforeEach(function () {
|
|
|
|
server = new Pretender();
|
|
|
|
});
|
2016-06-30 17:45:02 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
afterEach(function () {
|
|
|
|
server.shutdown();
|
|
|
|
});
|
2016-04-19 18:55:10 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
it('renders', function () {
|
|
|
|
// renders the component on the page
|
|
|
|
this.render(hbs`{{gh-search-input}}`);
|
2016-07-05 17:29:05 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
expect(this.$('.ember-power-select-search input')).to.have.length(1);
|
|
|
|
});
|
2016-07-05 17:29:05 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
it('opens the dropdown on text entry', function (done) {
|
|
|
|
this.render(hbs`{{gh-search-input}}`);
|
|
|
|
|
|
|
|
// enter text to trigger search
|
|
|
|
run(() => {
|
|
|
|
this.$('input[type="search"]').val('test').trigger('input');
|
|
|
|
});
|
2016-07-05 17:29:05 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
wait().then(() => {
|
|
|
|
expect(this.$('.ember-basic-dropdown-content').length).to.equal(1);
|
|
|
|
done();
|
2016-07-05 17:29:05 +03:00
|
|
|
});
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
|
|
|
});
|