Skip to content

Commit 0dc6671

Browse files
committed
fix travis
1 parent 623879f commit 0dc6671

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/tex2mml.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
const tape = require('tape');
2-
const exec = require('child_process').exec
1+
var tape = require('tape');
2+
var exec = require('child_process').exec
33
tape('A basic test', function(t) {
44
t.plan(1);
5-
const expected = `<math xmlns="http://www.w3.org/1998/Math/MathML" display="block" alttext="x">\n <mi>x</mi>\n</math>\n`
6-
let child = exec('node ./bin/tex2mml "x"',
5+
var expected = `<math xmlns="http://www.w3.org/1998/Math/MathML" display="block" alttext="x">\n <mi>x</mi>\n</math>\n`
6+
var child = exec('node ./bin/tex2mml "x"',
77
function (error, stdout, stderr) {
88
console.log(stdout);
99
t.equal(stdout, expected, 'Virtual Console not activated');

0 commit comments

Comments
 (0)