ea9c8c03fe
refs https://github.com/TryGhost/Ghost/pull/15550 Pulled out of the rolled up node+ember-js+ember-template rollup linter update PR as it required fairly extensive changes. - bumped package - renamed `no-down-event-binding` to `no-pointer-down-event-binding` - disabled `no-pointer-down-event-binding` rule - disabled `no-triple-curlies` rule - ran `yarn lint:hbs --fix` - updated integration tests to match Octane syntax - fixed various one-off errors - updated .lint-todo
35 lines
967 B
JavaScript
35 lines
967 B
JavaScript
import Pretender from 'pretender';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {fillIn, find, findAll, render} from '@ember/test-helpers';
|
|
import {setupRenderingTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: gh-search-input', function () {
|
|
setupRenderingTest();
|
|
|
|
let server;
|
|
|
|
beforeEach(function () {
|
|
server = new Pretender();
|
|
});
|
|
|
|
afterEach(function () {
|
|
server.shutdown();
|
|
});
|
|
|
|
it('renders', async function () {
|
|
// renders the component on the page
|
|
await render(hbs`<GhSearchInput />`);
|
|
|
|
expect(find('.ember-power-select-search input')).to.exist;
|
|
});
|
|
|
|
it('opens the dropdown on text entry', async function () {
|
|
await render(hbs`<GhSearchInput />`);
|
|
await fillIn('input[type="search"]', 'test');
|
|
|
|
expect(findAll('.ember-basic-dropdown-content').length).to.equal(1);
|
|
});
|
|
});
|