mirror of https://github.com/lukechilds/node.git
11 lines
301 B
11 lines
301 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
try {
|
|
require('../fixtures/invalid.json');
|
|
} catch (err) {
|
|
var re = /test[\/\\]fixtures[\/\\]invalid.json: Unexpected string/;
|
|
var i = err.message.match(re);
|
|
assert(null !== i, 'require() json error should include path');
|
|
}
|
|
|