mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 07:53:49 +08:00
FIX: Move details tests into the plugin directory
This commit is contained in:
@ -0,0 +1,28 @@
|
|||||||
|
import { default as PrettyText, buildOptions } from 'pretty-text/pretty-text';
|
||||||
|
|
||||||
|
module("lib:details-cooked-test");
|
||||||
|
|
||||||
|
const defaultOpts = buildOptions({
|
||||||
|
siteSettings: {
|
||||||
|
enable_emoji: true,
|
||||||
|
emoji_set: 'emoji_one',
|
||||||
|
highlighted_languages: 'json|ruby|javascript',
|
||||||
|
default_code_lang: 'auto',
|
||||||
|
censored_words: 'shucks|whiz|whizzer'
|
||||||
|
},
|
||||||
|
getURL: url => url
|
||||||
|
});
|
||||||
|
|
||||||
|
function cooked(input, expected, text) {
|
||||||
|
equal(new PrettyText(defaultOpts).cook(input), expected.replace(/\/>/g, ">"), text);
|
||||||
|
};
|
||||||
|
|
||||||
|
test("details", () => {
|
||||||
|
cooked(`<details><summary>Info</summary>coucou</details>`,
|
||||||
|
`<details><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
||||||
|
"manual HTML for details");
|
||||||
|
cooked(` <details><summary>Info</summary>coucou</details>`,
|
||||||
|
`<details><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
||||||
|
"manual HTML for details with a space");
|
||||||
|
});
|
||||||
|
|
@ -696,13 +696,3 @@ test("emoji - emojiSet", () => {
|
|||||||
{ emojiSet: 'twitter' },
|
{ emojiSet: 'twitter' },
|
||||||
`<p><img src="/images/emoji/twitter/smile.png?v=${v}" title=":smile:" class="emoji" alt=":smile:"></p>`);
|
`<p><img src="/images/emoji/twitter/smile.png?v=${v}" title=":smile:" class="emoji" alt=":smile:"></p>`);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("details", () => {
|
|
||||||
cooked(`<details><summary>Info</summary>coucou</details>`,
|
|
||||||
`<details><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
|
||||||
"manual HTML for details");
|
|
||||||
cooked(` <details><summary>Info</summary>coucou</details>`,
|
|
||||||
`<details><summary>Info</summary>\n\n<p>coucou</p>\n\n</details>`,
|
|
||||||
"manual HTML for details with a space");
|
|
||||||
});
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user