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