Skip to content

Commit

Permalink
Increase timeout for build step of concurrently in tests (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
paescuj committed Aug 22, 2022
1 parent 2e8eaa5 commit 1ee7e99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/concurrently.spec.ts
Expand Up @@ -32,10 +32,10 @@ beforeAll(async () => {
bundle: true,
outfile: path.join(tmpDir, 'concurrently.js'),
});
});
}, 8000);

afterAll(() => {
// Remove the temporary directory
// Remove the temporary directory where 'concurrently' was stored
if (tmpDir) {
fs.rmdirSync(tmpDir, { recursive: true });
}
Expand Down

0 comments on commit 1ee7e99

Please sign in to comment.