Skip to content

Commit

Permalink
CB-5820 fixes test for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyteleshev committed Oct 17, 2024
1 parent 751e368 commit 43e6204
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion webapp/packages/core-cli/configs/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ module.exports = {
testEnvironment: require.resolve('../tests/test.environment.js'),
rootDir: path.resolve('.'),
moduleFileExtensions: ['js', 'jsx', 'json'],
testMatch: ['<rootDir>/packages/*/dist/**/?(*.)+(spec|test).js?(x)', '<rootDir>/dist/**/?(*.)+(spec|test).js?(x)'],
testMatch: [
'<rootDir>/packages/*/dist/**/?(*.)+(spec|test).js?(x)', // unix
'<rootDir>\\packages\\*\\dist\\**?(*.)+(spec|test).js?(x)', // windows
],
transformIgnorePatterns: [
'\\.pnp\\.[^\\/]+$',
'node_modules/(?!@ngrx|(?!deck.gl)|ng-dynamic)',
Expand Down

0 comments on commit 43e6204

Please sign in to comment.