mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 14:26:12 +08:00
fe588cc7f8
* DEV: Fix the function prototype observers deprecation DEPRECATION: Function prototype extensions have been deprecated, please migrate from function(){}.observes('foo') to observer('foo', function() {}). [deprecation id: function-prototype-extensions.observes] See https://deprecations.emberjs.com/v3.x/#toc_function-prototype-extensions-observes for more details. * DEV: Fix the function prototype event listeners deprecation DEPRECATION: Function prototype extensions have been deprecated, please migrate from function(){}.on('foo') to on('foo', function() {}). [deprecation id: function-prototype-extensions.on] See https://deprecations.emberjs.com/v3.x/#toc_function-prototype-extensions-on for more details. * DEV: Simplify `default as` imports Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
39 lines
854 B
JavaScript
39 lines
854 B
JavaScript
import PrettyText, { buildOptions } from "pretty-text/pretty-text";
|
|
|
|
QUnit.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"
|
|
},
|
|
censoredWords: "shucks|whiz|whizzer",
|
|
getURL: url => url
|
|
});
|
|
|
|
test("details", assert => {
|
|
const cooked = (input, expected, text) => {
|
|
assert.equal(
|
|
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"
|
|
);
|
|
|
|
cooked(
|
|
"[details=testing]\ntest\n[/details]",
|
|
`<details>
|
|
<summary>
|
|
testing</summary>
|
|
<p>test</p>
|
|
</details>`
|
|
);
|
|
});
|