Skip to content

Commit

Permalink
test: adapt to new JSON SyntaxError messages
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored and nodejs-github-bot committed Jul 11, 2022
1 parent 7ab94e7 commit 954f3f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/es-module/test-esm-data-urls.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function createBase64URL(mime, body) {
import('data:application/json;foo="test,",0',
{ assert: { type: 'json' } }), {
name: 'SyntaxError',
message: /Unexpected end of JSON input/
message: /Unterminated string in JSON at position 3/
});
}
{
Expand Down
2 changes: 1 addition & 1 deletion test/es-module/test-esm-invalid-pjson.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ child.on('close', mustCall((code, signal) => {
stderr.includes(
`[ERR_INVALID_PACKAGE_CONFIG]: Invalid package config ${invalidJson} ` +
`while importing "invalid-pjson" from ${entry}. ` +
`Unexpected token } in JSON at position ${12 + checkoutEOL.length * 2}`
`Expected ':' after property name in JSON at position ${12 + checkoutEOL.length * 2}`
),
stderr);
}));

0 comments on commit 954f3f8

Please sign in to comment.