Add missing file name to 'Input file is missing' error message (#3178)

This commit is contained in:
Chris Hranj
2022-04-05 06:35:01 -04:00
committed by GitHub
parent 5d36f5f699
commit 9deac83322
3 changed files with 4 additions and 3 deletions

View File

@@ -457,7 +457,7 @@ describe('Input/output', function () {
done();
}).catch(function (err) {
assert(err instanceof Error);
assert.strictEqual('Input file is missing', err.message);
assert.strictEqual('Input file is missing: does-not-exist', err.message);
done();
});
});