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
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {render} from '@ember/test-helpers';
|
|
import {setupRenderingTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: gh-unsplash', function () {
|
|
setupRenderingTest();
|
|
|
|
it('renders', async function () {
|
|
// Set any properties with this.set('myProperty', 'value');
|
|
// Handle any actions with this.on('myAction', function(val) { ... });
|
|
// Template block usage:
|
|
// await render(hbs`
|
|
// {{#gh-unsplash}}
|
|
// template content
|
|
// {{/gh-unsplash}}
|
|
// `);
|
|
|
|
await render(hbs`<GhUnsplash />`);
|
|
expect(this.element).to.exist;
|
|
});
|
|
|
|
it('loads new photos by default');
|
|
it('has responsive columns');
|
|
it('can zoom');
|
|
it('can close zoom by clicking on image');
|
|
it('can close zoom by clicking outside image');
|
|
it('triggers insert action');
|
|
it('handles errors');
|
|
|
|
describe('searching', function () {
|
|
it('works');
|
|
it('handles no results');
|
|
it('handles error');
|
|
});
|
|
|
|
describe('closing', function () {
|
|
it('triggers close action');
|
|
it('can be triggerd by escape key');
|
|
it('cannot be triggered by escape key when zoomed');
|
|
});
|
|
});
|