Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpascual committed Dec 24, 2024
1 parent 4031cb0 commit a79bfee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/components/dependabot_version_update_handler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ void describe('dependabot version update handler', async () => {
// create temp dir
const shortId = randomUUID().split('-')[0];
const testNameNormalized = testName.slice(0, 15).replaceAll(/\s/g, '');
const tempDir = await fsp.mkdtemp(tmpdir());
testWorkingDir = path.join(tempDir, `${testNameNormalized}-${shortId}`);
await fsp.mkdir(testWorkingDir);
testWorkingDir = await fsp.mkdtemp(
path.join(tmpdir(), `${testNameNormalized}-${shortId}`)
);
console.log(testWorkingDir);

gitClient = new GitClient(testWorkingDir);
Expand Down

0 comments on commit a79bfee

Please sign in to comment.