Skip to content

Commit

Permalink
Small fixes (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
paescuj committed Aug 11, 2022
1 parent d032321 commit f6a588e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/concurrently.spec.ts
Expand Up @@ -417,6 +417,7 @@ expect.extend({
pass: false,
};
}

return {
message: () => 'Expected lines to not have process start and stop messages',
pass: true,
Expand All @@ -438,6 +439,7 @@ expect.extend({
pass: false,
};
}

return {
message: () => 'Expected lines to not have timings table',
pass: true,
Expand Down
1 change: 1 addition & 0 deletions bin/fixtures/read-echo.js
@@ -1,4 +1,5 @@
/* eslint-disable no-console */

process.stdin.on('data', (chunk) => {
const line = chunk.toString().trim();
console.log(line);
Expand Down
1 change: 1 addition & 0 deletions bin/fixtures/sleep.mjs
Expand Up @@ -6,6 +6,7 @@
*/

/* eslint-disable no-console */

async function run(s) {
await new Promise((resolve) => setTimeout(resolve, s * 1000));
}
Expand Down

0 comments on commit f6a588e

Please sign in to comment.