Sign in
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2025-11-20
/
.
/
test
/
parallel
/
test-require-invalid-package.js
blob: 47e22ae939447e88c5835b0731df7c9e91b829c5 [
file
] [
log
] [
blame
] [
edit
]
'use strict'
;
require
(
'../common'
);
const
assert
=
require
(
'assert'
);
// Should be an invalid package path.
assert
.
throws
(()
=>
require
(
'package.json'
),
{
code
:
'MODULE_NOT_FOUND'
}
);