removed double stderr

This commit is contained in:
antelle 2021-04-10 18:47:00 +02:00
parent 077f72a0c5
commit 85d0252972
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
1 changed files with 0 additions and 1 deletions

View File

@ -66,7 +66,6 @@ describe('KeeWeb extension native module host', function () {
done();
});
process.stdin.write('ping');
process.stderr.on('data', (data) => console.log(data.toString()));
process.stdout.on('data', (data) => {
expect(data.toString()).to.eql('ping response');
server.close();