discourse/plugins/discourse-details/test/javascripts/lib/details-cooked-test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
961 B
JavaScript
Raw Normal View History

import PrettyText, { buildOptions } from "pretty-text/pretty-text";
import { module, test } from "qunit";
const defaultOpts = buildOptions({
siteSettings: {
enable_emoji: true,
emoji_set: "google_classic",
2018-06-15 12:42:20 -04:00
highlighted_languages: "json|ruby|javascript",
default_code_lang: "auto",
},
2018-06-15 12:42:20 -04:00
censoredWords: "shucks|whiz|whizzer",
getURL: (url) => url,
});
module("lib:details-cooked-test", function () {
test("details", function (assert) {
const cooked = (input, expected, text) => {
assert.strictEqual(
new PrettyText(defaultOpts).cook(input),
expected.replace(/\/>/g, ">"),
text
);
};
cooked(
`<details><summary>Info</summary>coucou</details>`,
`<details><summary>Info</summary>coucou</details>`,
"manual HTML for details"
2018-06-15 12:42:20 -04:00
);
cooked(
"[details=testing]\ntest\n[/details]",
`<details>
<summary>
testing</summary>
<p>test</p>
2018-06-15 12:42:20 -04:00
</details>`
);
});
2016-07-20 13:26:23 -04:00
});