2020-01-16 12:56:53 -05:00
|
|
|
import PrettyText, { buildOptions } from "pretty-text/pretty-text";
|
2016-07-19 16:20:59 -04:00
|
|
|
|
2017-07-05 14:14:30 -04:00
|
|
|
QUnit.module("lib:details-cooked-test");
|
2016-07-19 16:20:59 -04:00
|
|
|
|
|
|
|
const defaultOpts = buildOptions({
|
|
|
|
siteSettings: {
|
|
|
|
enable_emoji: true,
|
2018-06-15 12:42:20 -04:00
|
|
|
emoji_set: "emoji_one",
|
|
|
|
highlighted_languages: "json|ruby|javascript",
|
|
|
|
default_code_lang: "auto"
|
2016-07-19 16:20:59 -04:00
|
|
|
},
|
2018-06-15 12:42:20 -04:00
|
|
|
censoredWords: "shucks|whiz|whizzer",
|
2016-07-19 16:20:59 -04:00
|
|
|
getURL: url => url
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
test("details", assert => {
|
|
|
|
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"
|
|
|
|
);
|
2016-07-19 16:20:59 -04:00
|
|
|
|
2018-06-15 12:42:20 -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>`
|
|
|
|
);
|
2016-07-20 13:26:23 -04:00
|
|
|
});
|