import { queryAll, discourseModule, } from "discourse/tests/helpers/qunit-helpers"; import componentTest, { setupRenderingTest, } from "discourse/tests/helpers/component-test"; import pretender from "discourse/tests/helpers/create-pretender"; import { resetCache } from "pretty-text/upload-short-url"; discourseModule("Integration | Component | cook-text", function (hooks) { setupRenderingTest(hooks); componentTest("renders markdown", { template: '{{cook-text "_foo_" class="post-body"}}', test(assert) { const html = queryAll(".post-body")[0].innerHTML.trim(); assert.equal(html, "
foo
"); }, }); componentTest("resolves short URLs", { template: `{{cook-text "" class="post-body"}}`, beforeEach() { pretender.post("/uploads/lookup-urls", () => { return [ 200, { "Content-Type": "application/json" }, [ { short_url: "upload://a.png", url: "/images/avatar.png", short_path: "/images/d-logo-sketch.png", }, ], ]; }); }, afterEach() { resetCache(); }, test(assert) { const html = queryAll(".post-body")[0].innerHTML.trim(); assert.equal( html, '![]()