Ghost/ghost/admin/tests/integration/components/gh-unsplash-test.js
Kevin Ansfield ea9c8c03fe
Update dependency ember-template-lint to v5.3.0 (#16062)
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
2023-01-04 09:39:32 +00:00

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');
});
});