Ghost/ghost/admin/tests/integration/helpers/gh-url-preview-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

40 lines
1.2 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('Unit: Component: gh-url-preview', function () {
setupRenderingTest();
beforeEach(function () {
let configStub = {
blogUrl: 'http://my-ghost-blog.com'
};
this.owner.register('config:main', configStub, {instantiate: false});
});
it('generates the correct preview URL with a prefix', async function () {
await render(hbs`
<GhUrlPreview
@prefix="tag"
@slug="test-slug"
@tagName="p"
@classNames="test-class"
/>`);
expect(this.element).to.have.trimmed.text('my-ghost-blog.com/tag/test-slug/');
});
it('generates the correct preview URL without a prefix', async function () {
await render(hbs`
<GhUrlPreview
@slug="test-slug"
@tagName="p"
@classNames="test-class"
/>`);
expect(this.element).to.have.trimmed.text('my-ghost-blog.com/test-slug/');
});
});