mirror of
https://github.com/discourse/discourse.git
synced 2025-04-03 01:09:44 +08:00

This structure is closer to how ember-cli expects tests to be placed. It is not their final position, just the first step towards it.
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
import componentTest from "helpers/component-test";
|
|
import pretender from "helpers/create-pretender";
|
|
import { resetCache } from "pretty-text/upload-short-url";
|
|
|
|
moduleForComponent("cook-text", { integration: true });
|
|
|
|
componentTest("renders markdown", {
|
|
template: '{{cook-text "_foo_" class="post-body"}}',
|
|
|
|
test(assert) {
|
|
const html = find(".post-body")[0].innerHTML.trim();
|
|
assert.equal(html, "<p><em>foo</em></p>");
|
|
},
|
|
});
|
|
|
|
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 = find(".post-body")[0].innerHTML.trim();
|
|
assert.equal(html, '<p><img src="/images/avatar.png" alt="an image"></p>');
|
|
},
|
|
});
|