FIX: Do not highlight large code blocks (#10125)

This commit is contained in:
Bianca Nenciu
2020-07-07 18:51:19 +03:00
committed by GitHub
parent 6705c45156
commit 4a90464619
2 changed files with 26 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
import componentTest from "helpers/component-test";
const LONG_CODE_BLOCK = "puts a\n".repeat(15000);
moduleForComponent("highlighted-code", { integration: true });
componentTest("highlighting code", {
@@ -20,3 +22,22 @@ componentTest("highlighting code", {
);
}
});
componentTest("large code blocks are not highlighted", {
template: "{{highlighted-code lang='ruby' code=code}}",
beforeEach() {
Discourse.HighlightJSPath =
"assets/highlightjs/highlight-test-bundle.min.js";
this.set("code", LONG_CODE_BLOCK);
},
async test(assert) {
assert.equal(
find("code")
.text()
.trim(),
LONG_CODE_BLOCK.trim()
);
}
});