summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-pretty-custom-stack.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-repl-pretty-custom-stack.js')
-rw-r--r--test/parallel/test-repl-pretty-custom-stack.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/parallel/test-repl-pretty-custom-stack.js b/test/parallel/test-repl-pretty-custom-stack.js
index 0d2ada134f..8f633a4d48 100644
--- a/test/parallel/test-repl-pretty-custom-stack.js
+++ b/test/parallel/test-repl-pretty-custom-stack.js
@@ -48,26 +48,26 @@ const tests = [
{
// test .load for a file that throws
command: `.load ${fixtures.path('repl-pretty-stack.js')}`,
- expected: 'Thrown:\nError: Whoops!--->\nrepl:*:*--->\nd (repl:*:*)' +
+ expected: 'Uncaught Error: Whoops!--->\nrepl:*:*--->\nd (repl:*:*)' +
'--->\nc (repl:*:*)--->\nb (repl:*:*)--->\na (repl:*:*)\n'
},
{
command: 'let x y;',
- expected: 'Thrown:\n' +
- 'let x y;\n ^\n\nSyntaxError: Unexpected identifier\n'
+ expected: 'let x y;\n ^\n\n' +
+ 'Uncaught SyntaxError: Unexpected identifier\n'
},
{
command: 'throw new Error(\'Whoops!\')',
- expected: 'Thrown:\nError: Whoops!\n'
+ expected: 'Uncaught Error: Whoops!\n'
},
{
command: 'foo = bar;',
- expected: 'Thrown:\nReferenceError: bar is not defined\n'
+ expected: 'Uncaught ReferenceError: bar is not defined\n'
},
// test anonymous IIFE
{
command: '(function() { throw new Error(\'Whoops!\'); })()',
- expected: 'Thrown:\nError: Whoops!--->\nrepl:*:*\n'
+ expected: 'Uncaught Error: Whoops!--->\nrepl:*:*\n'
}
];