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

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

39 lines
865 B
Plaintext
Raw Normal View History

import PrettyText, { buildOptions } from "pretty-text/pretty-text";
module("lib:details-cooked-test");
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,
});
test("details", function (assert) {
2017-06-14 13:57:58 -04:00
const cooked = (input, expected, text) => {
2018-06-15 12:42:20 -04:00
assert.equal(
new PrettyText(defaultOpts).cook(input),
expected.replace(/\/>/g, ">"),
text
);
2017-06-14 13:57:58 -04:00
};
2018-06-15 12:42:20 -04:00
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
});