summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-repl.js')
-rw-r--r--test/parallel/test-repl.js21
1 files changed, 14 insertions, 7 deletions
diff --git a/test/parallel/test-repl.js b/test/parallel/test-repl.js
index 35cd3e11af..8cb4b686b8 100644
--- a/test/parallel/test-repl.js
+++ b/test/parallel/test-repl.js
@@ -162,13 +162,11 @@ const errorTests = [
// Template expressions
{
send: '`io.js ${"1.0"',
- expect: [
- kSource,
- kArrow,
- '',
- /^SyntaxError: /,
- ''
- ]
+ expect: '... '
+ },
+ {
+ send: '+ ".2"}`',
+ expect: '\'io.js 1.0.2\''
},
{
send: '`io.js ${',
@@ -315,6 +313,15 @@ const errorTests = [
send: '1 }',
expect: '{ a: 1 }'
},
+ // Multiline string-keyed object (e.g. JSON)
+ {
+ send: '{ "a": ',
+ expect: '... '
+ },
+ {
+ send: '1 }',
+ expect: '{ a: 1 }'
+ },
// Multiline anonymous function with comment
{
send: '(function() {',