-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
module: improve error message for top-level await in CommonJS
- Loading branch information
Mert Can Altin
committed
Nov 15, 2024
1 parent
def4c28
commit 6450b04
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
'use strict'; | ||
require('../common'); | ||
|
||
const { spawnSync } = require('node:child_process'); | ||
const assert = require('node:assert'); | ||
|
||
const result = spawnSync(process.execPath, ['-e', ` | ||
const port = await getPort(); | ||
`]); | ||
|
||
assert.strictEqual(result.stderr.includes('Top-level await is not supported in CommonJS'), true); |