mathjax-node
Version:
API's for calling MathJax from node.js
23 lines (17 loc) • 617 B
JavaScript
var tape = require('tape');
var mjAPI = require("../lib/main.js");
mjAPI.config({undefinedCharError: true});
tape('basic test: check warnings', function (t) {
t.plan(2);
mjAPI.config({displayErrors: false});
mjAPI.typeset({math:'\u5475', html:true})
.catch(errors => t.ok(errors, 'CommonHTML output reports error'));
mjAPI.typeset({math:'\u5475', svg:true})
.catch(errors => t.ok(errors, 'SVG output reports error'));
//
// reset configuration
//
mjAPI.typeset({math: '', format: 'TeX', mml: true}, () => {
mjAPI.config({displayErrors: true});
});
});