mirror of https://github.com/nodejs/node.git
Fix test-require-json on Windows
parent
1c1ad9bcf4
commit
c4e9226bdb
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue