We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 429e91a commit e027c22Copy full SHA for e027c22
1 file changed
test/base-warnings.js
@@ -4,8 +4,8 @@ mjAPI.config({undefinedCharError: true});
4
5
tape('basic test: check warnings', function (t) {
6
t.plan(2);
7
- mjAPI.typeset({math:'呵', html:true})
+ mjAPI.typeset({math:'\u5475', html:true})
8
.catch(errors => t.ok(errors, 'CommonHTML output reports error'));
9
- mjAPI.typeset({math:'呵', svg:true})
+ mjAPI.typeset({math:'\u5475', svg:true})
10
.catch(errors => t.ok(errors, 'SVG output reports error'));
11
});
0 commit comments