Skip to content

Commit

Permalink
tests2
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Dec 21, 2021
1 parent da9fc77 commit cee475c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function extract(archivePath) {
}
})
.then(function () {
console.log('Complete.');
process.stdout.write('Complete.');
})
.catch(function (err) {
console.log('Something is wrong ', err.stack);
Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ test.cb('properly extracts', t => {
if (error) {
return t.fail(`exec error: ${error}`)
}
t.assert(stdout.includes('Complete'), stdout);
t.assert(stdout.includes('Downloading geckodriver'), stdout);
t.is(stderr, '');
t.end();
});
Expand Down

0 comments on commit cee475c

Please sign in to comment.