Skip to content

Commit

Permalink
remove unwanted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkit-30 committed Feb 15, 2023
1 parent 1512e10 commit 96e321a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/message/test_runner_output_spec_reporter.js
Expand Up @@ -6,5 +6,5 @@ const child = spawn(process.execPath,
['--no-warnings', '--test-reporter', 'spec', 'test/message/test_runner_output.js'],
{ stdio: 'pipe' });
// eslint-disable-next-line no-control-regex
child.stdout.on('data', (d) => process.stdout.write(d.toString().replace(/[^\x00-\x7F]/g, '').replace(/\u001b\[\d+m/g, '').replace(/[^\x00-\x7c]/g, '')));
child.stdout.on('data', (d) => process.stdout.write(d.toString().replace(/[^\x00-\x7F]/g, '').replace(/\u001b\[\d+m/g, '')));
child.stderr.pipe(process.stderr);

0 comments on commit 96e321a

Please sign in to comment.