Fix test-require-json on Windows

pull/24503/head
isaacs 2012-07-07 15:01:51 -07:00
parent 1c1ad9bcf4
commit c4e9226bdb
1 changed files with 4 additions and 3 deletions

View File

@ -24,6 +24,7 @@ var assert = require('assert');
try {
require('../fixtures/invalid.json');
} catch (err) {
var i = err.message.indexOf('test/fixtures/invalid.json: Unexpected string')
assert(-1 != i, 'require() json error should include path');
}
var re = /test[\/\\]fixtures[\/\\]invalid.json: Unexpected string/;
var i = err.message.match(re);
assert(null !== i, 'require() json error should include path');
}