Skip to content

Commit a7c9c56

Browse files
Duy Leevanlucas
Duy Le
authored andcommitted
test: add test-require-invalid-package
Add test for requiriing an invalid package path. PR-URL: #9903 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Franziska Hinkelmann <[email protected]>
1 parent d1b4c5d commit a7c9c56

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
'use strict';
2+
3+
require('../common');
4+
const assert = require('assert');
5+
6+
// Should be an invalid package path.
7+
assert.throws(() => require('package.json'), (err) => {
8+
return err && err.code === 'MODULE_NOT_FOUND';
9+
});

0 commit comments

Comments
 (0)