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';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {describe, it} from 'mocha';
|
|
|
|
import {expect} from 'chai';
|
2019-01-02 12:58:55 +03:00
|
|
|
import {fillIn, findAll, render} from '@ember/test-helpers';
|
|
|
|
import {setupRenderingTest} 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 () {
|
2019-01-02 12:58:55 +03:00
|
|
|
setupRenderingTest();
|
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
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('renders', async function () {
|
2016-11-24 01:50:57 +03:00
|
|
|
// renders the component on the page
|
2019-01-02 12:58:55 +03:00
|
|
|
await 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
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
it('opens the dropdown on text entry', async function () {
|
|
|
|
await render(hbs`{{gh-search-input}}`);
|
|
|
|
await fillIn('input[type="search"]', 'test');
|
2016-07-05 17:29:05 +03:00
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
expect(findAll('.ember-basic-dropdown-content').length).to.equal(1);
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
|
|
|
});
|