Skip to content

Commit

Permalink
Merge branch 'master' into aizad/85686/acuity-pdf-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aizad-deriv committed Mar 21, 2023
2 parents aea5fcc + aa40d55 commit 0c211c6
Show file tree
Hide file tree
Showing 741 changed files with 81,262 additions and 41,861 deletions.
5 changes: 5 additions & 0 deletions packages/core/global.d.ts → global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,9 @@ declare global {
}
}

declare module '*.svg' {
const content: React.SVGAttributes<SVGElement>;
export default content;
}

export {};
2 changes: 1 addition & 1 deletion jest.config.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
collectCoverageFrom: ['**/*.{js,jsx,ts,tsx}', '!**/node_modules/**'],
coverageReporters: ['lcov'],
coverageDirectory: './coverage/',
testRegex: '(/__tests__/.*|(\\.)(test|spec))\\.(js|tsx)?$',
testRegex: '(/__tests__/.*|(\\.)(test|spec))\\.(js|jsx|tsx|ts)?$',
// This is needed to transform es modules imported from node_modules of the target component.
transformIgnorePatterns: ['/node_modules/(?!@enykeev/react-virtualized).+\\.js$'],
setupFiles: ['<rootDir>/../../jest.setup.js'],
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ module.exports = {
'^.+/es/^.+$': 'babel-jest',
'^.+\\.(ts|tsx)?$': 'ts-jest',
},
testRegex: ['__tests__', '.*.spec.js'],
testRegex: '(/__tests__/.*|(\\.)(test|spec))\\.(js|jsx|tsx|ts)?$',
transformIgnorePatterns: ['/node_modules/(?!@enykeev/react-virtualized).+\\.js$'],
};
Loading

0 comments on commit 0c211c6

Please sign in to comment.