Skip to content

Commit

Permalink
Attempt at fixing testing on Windows 馃
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavohenke committed Feb 4, 2024
1 parent ae6dc86 commit e058337
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jest.config.js
Expand Up @@ -16,7 +16,8 @@ const config = {
{
...baseConfig,
displayName: 'unit',
testMatch: ['<rootDir>/(src|bin)/**/*.spec.ts'],
// (src|bin) doesn't seem to work on Windows
testMatch: ['src', 'bin'].map((dir) => `<rootDir>/${dir}/**/*.spec.ts`),
},
{
...baseConfig,
Expand Down

0 comments on commit e058337

Please sign in to comment.