Skip to content

Commit 243ab4d

Browse files
authored
test: fix failing tests in the REPL
Addresses a test regression introduced in #2502. PR-URL: #2516 Ref: #2502 Ref: 7ba179c Reviewed-by: Athan Reines <kgryte@gmail.com> Signed-off-by: Snehil Shah <snehilshah.989@gmail.com>
1 parent 350aa53 commit 243ab4d

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
lines changed

lib/node_modules/@stdlib/repl/test/integration/test.auto_page.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ function defaultSettings() {
5858
return {
5959
'autoDeletePairs': false,
6060
'autoClosePairs': false,
61+
'autoDisableBracketedPasteOnExit': false,
6162
'completionPreviews': false,
6263
'syntaxHighlighting': false,
6364
'autoPage': true

lib/node_modules/@stdlib/repl/test/integration/test.completer_engine.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ function defaultSettings() {
4545
return {
4646
'autoDeletePairs': false,
4747
'autoClosePairs': false,
48+
'autoDisableBracketedPasteOnExit': false,
4849
'completionPreviews': false,
4950
'syntaxHighlighting': false,
5051
'autoPage': false

lib/node_modules/@stdlib/repl/test/integration/test.completion_previews.js

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ tape( 'a REPL instance supports displaying a completion preview of user-defined
4646
'input': istream,
4747
'settings': {
4848
'autoPage': false,
49-
'syntaxHighlighting': false
49+
'syntaxHighlighting': false,
50+
'autoDisableBracketedPasteOnExit': false
5051
}
5152
};
5253
r = repl( opts, onClose );
@@ -90,7 +91,8 @@ tape( 'a REPL instance supports displaying a completion preview for common prefi
9091
'input': istream,
9192
'settings': {
9293
'autoPage': false,
93-
'syntaxHighlighting': false
94+
'syntaxHighlighting': false,
95+
'autoDisableBracketedPasteOnExit': false
9496
}
9597
};
9698
r = repl( opts, onClose );
@@ -135,7 +137,8 @@ tape( 'a REPL instance supports displaying a completion preview for recognized i
135137
'input': istream,
136138
'settings': {
137139
'autoPage': false,
138-
'syntaxHighlighting': false
140+
'syntaxHighlighting': false,
141+
'autoDisableBracketedPasteOnExit': false
139142
}
140143
};
141144
r = repl( opts, onClose );
@@ -179,7 +182,8 @@ tape( 'a REPL instance supports displaying a completion preview when a cursor is
179182
'input': istream,
180183
'settings': {
181184
'autoPage': false,
182-
'syntaxHighlighting': false
185+
'syntaxHighlighting': false,
186+
'autoDisableBracketedPasteOnExit': false
183187
}
184188
};
185189
r = repl( opts, onClose );
@@ -232,7 +236,8 @@ tape( 'a REPL instance supports auto-completing a completion candidate by moving
232236
'input': istream,
233237
'settings': {
234238
'autoPage': false,
235-
'syntaxHighlighting': false
239+
'syntaxHighlighting': false,
240+
'autoDisableBracketedPasteOnExit': false
236241
}
237242
};
238243
r = repl( opts, onClose );
@@ -284,7 +289,8 @@ tape( 'a REPL instance supports auto-completing a completion preview and executi
284289
'outputPrompt': '',
285290
'settings': {
286291
'autoPage': false,
287-
'syntaxHighlighting': false
292+
'syntaxHighlighting': false,
293+
'autoDisableBracketedPasteOnExit': false
288294
}
289295
};
290296
r = repl( opts, onClose );
@@ -337,7 +343,8 @@ tape( 'a REPL instance does not display a completion preview when no completion
337343
'input': istream,
338344
'settings': {
339345
'autoPage': false,
340-
'syntaxHighlighting': false
346+
'syntaxHighlighting': false,
347+
'autoDisableBracketedPasteOnExit': false
341348
}
342349
};
343350
r = repl( opts, onClose );
@@ -395,7 +402,8 @@ tape( 'a REPL instance does not display a completion preview once a user enters
395402
'outputPrompt': '',
396403
'settings': {
397404
'autoPage': false,
398-
'syntaxHighlighting': false
405+
'syntaxHighlighting': false,
406+
'autoDisableBracketedPasteOnExit': false
399407
}
400408
};
401409
r = repl( opts, onClose );

lib/node_modules/@stdlib/repl/test/integration/test.syntax_highlighting.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ function defaultSettings() {
6969
return {
7070
'autoClosePairs': false,
7171
'autoDeletePairs': false,
72+
'autoDisableBracketedPasteOnExit': false,
7273
'autoPage': false,
7374
'completionPreviews': false,
7475
'syntaxHighlighting': true

0 commit comments

Comments
 (0)