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 21ef765 commit 261f448Copy full SHA for 261f448
test/css.js
@@ -2,7 +2,7 @@ var tape = require('tape');
2
var mjAPI = require("../lib/main.js");
3
4
tape('CSS output', function(t) {
5
- t.plan(2);
+ t.plan(3);
6
mjAPI.start();
7
var tex = 'x';
8
mjAPI.typeset({
@@ -18,6 +18,7 @@ tape('CSS output', function(t) {
18
css: true,
19
svg: true
20
}, function(data) {
21
- t.ok(data.css, 'css output with SVG output');
+ t.ok(data.css, 'css output created alongside SVG output');
22
+ t.ok(data.svg, 'svg output is created');
23
});
24
0 commit comments