Skip to content

Commit

Permalink
Switch to return await to avoid ESLint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
karlhorky authored Nov 29, 2024
1 parent d4bb399 commit 399496f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ beforeAll(
],
async (testRepo) => {
await execa`git clone --depth 1 --single-branch --branch=main https://github.com/${testRepo.repoPath}.git ${fixturesTempDir}/${testRepo.dirName} --config core.autocrlf=input`;
return testRepo.setup();
return await testRepo.setup();
},
{
// Run up to 4 concurrent test repo setups at a time
Expand Down

0 comments on commit 399496f

Please sign in to comment.