summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-top-level-await.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-repl-top-level-await.js')
-rw-r--r--test/parallel/test-repl-top-level-await.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/parallel/test-repl-top-level-await.js b/test/parallel/test-repl-top-level-await.js
index f629d3f1d0..5c8aa95d40 100644
--- a/test/parallel/test-repl-top-level-await.js
+++ b/test/parallel/test-repl-top-level-await.js
@@ -118,15 +118,15 @@ async function ordinaryTests() {
[ 'if (await true) { function bar() {}; }', 'undefined' ],
[ 'bar', '[Function: bar]' ],
[ 'if (await true) { class Bar {}; }', 'undefined' ],
- [ 'Bar', 'ReferenceError: Bar is not defined', { line: 1 } ],
+ [ 'Bar', 'Uncaught ReferenceError: Bar is not defined' ],
[ 'await 0; function* gen(){}', 'undefined' ],
[ 'for (var i = 0; i < 10; ++i) { await i; }', 'undefined' ],
[ 'i', '10' ],
[ 'for (let j = 0; j < 5; ++j) { await j; }', 'undefined' ],
- [ 'j', 'ReferenceError: j is not defined', { line: 1 } ],
+ [ 'j', 'Uncaught ReferenceError: j is not defined' ],
[ 'gen', '[GeneratorFunction: gen]' ],
- [ 'return 42; await 5;', 'SyntaxError: Illegal return statement',
- { line: 4 } ],
+ [ 'return 42; await 5;', 'Uncaught SyntaxError: Illegal return statement',
+ { line: 3 } ],
[ 'let o = await 1, p', 'undefined' ],
[ 'p', 'undefined' ],
[ 'let q = 1, s = await 2', 'undefined' ],
@@ -160,7 +160,7 @@ async function ctrlCTest() {
{ ctrl: true, name: 'c' }
]), [
'await timeout(100000)\r',
- 'Thrown:',
+ 'Uncaught:',
'[Error [ERR_SCRIPT_EXECUTION_INTERRUPTED]: ' +
'Script execution was interrupted by `SIGINT`] {',
" code: 'ERR_SCRIPT_EXECUTION_INTERRUPTED'",