Skip to content

Commit

Permalink
Fix pattern in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliaavila committed Nov 14, 2024
1 parent 8af3364 commit 0f918f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/botbuilder-repo-utils/tests/updateVersions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ describe('updateVersions', function () {
return {
...workspace,
relPath,
absPath: path.join(root, ...relPath, 'package.json'),
posixPath: path.posix.join(root, ...relPath, 'package.json'),
absPath: path.join(root, ...relPath, '{package.json,package-with-tests.json}{,.js,.ts}'),
posixPath: path.posix.join(root, ...relPath, '{package.json,package-with-tests.json}{,.js,.ts}'),
};
});

Expand Down

0 comments on commit 0f918f1

Please sign in to comment.