We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24538f5 commit 1f43c67Copy full SHA for 1f43c67
test/HTMLCodeBlockElement.test.ts
@@ -1,9 +1,10 @@
1
import HTMLCodeBlockElement from '../src/class/HTMLCodeBlockElement';
2
3
-HTMLCodeBlockElement.highlight = function hoge() {
+// Mock
4
+HTMLCodeBlockElement.highlight = function hoge(src) {
5
return {
- markup: 'Debug Text',
6
- }
+ markup: src,
7
+ };
8
};
9
10
customElements.define('code-block', HTMLCodeBlockElement);
0 commit comments