2020-01-16 12:56:53 -05:00
|
|
|
import PrettyText, { buildOptions } from "pretty-text/pretty-text";
|
2021-06-09 10:58:55 -04:00
|
|
|
import { module, test } from "qunit";
|
2016-07-19 16:20:59 -04:00
|
|
|
|
|
|
|
const defaultOpts = buildOptions({
|
|
|
|
siteSettings: {
|
|
|
|
enable_emoji: true,
|
2022-11-07 18:17:43 -05:00
|
|
|
emoji_set: "twitter",
|
2018-06-15 12:42:20 -04:00
|
|
|
highlighted_languages: "json|ruby|javascript",
|
2020-09-04 14:01:14 -04:00
|
|
|
default_code_lang: "auto",
|
2016-07-19 16:20:59 -04:00
|
|
|
},
|
2018-06-15 12:42:20 -04:00
|
|
|
censoredWords: "shucks|whiz|whizzer",
|
2020-09-04 14:01:14 -04:00
|
|
|
getURL: (url) => url,
|
2016-07-19 16:20:59 -04:00
|
|
|
});
|
|
|
|
|
2022-06-20 09:42:10 -04:00
|
|
|
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
|
|
|
);
|
2016-07-19 16:20:59 -04:00
|
|
|
|
2022-06-20 09:42:10 -04:00
|
|
|
cooked(
|
|
|
|
"[details=testing]\ntest\n[/details]",
|
|
|
|
`<details>
|
2017-07-14 08:27:28 -04:00
|
|
|
<summary>
|
|
|
|
testing</summary>
|
|
|
|
<p>test</p>
|
2018-06-15 12:42:20 -04:00
|
|
|
</details>`
|
2022-06-20 09:42:10 -04:00
|
|
|
);
|
|
|
|
});
|
2016-07-20 13:26:23 -04:00
|
|
|
});
|