Skip to content

Commit ceb0053

Browse files
committed
Fix issue with large resultsets
1 parent aaaaa42 commit ceb0053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controllers/test/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default class TestController {
7171
testProcess.on('exit', function (statusCode) {
7272
if (statusCode === 0) {
7373
if (options.format === 'json') {
74-
resolve(stdoutLines.join());
74+
resolve(stdoutLines.join(''));
7575
}
7676
else {
7777
resolve(stdoutLines.join('\n'));

0 commit comments

Comments
 (0)