seanlandsman
seanlandsman
Again - this should help: https://github.com/ag-grid/ag-grid/issues/6766#issuecomment-1678603954
Please remove the `transformIgnorePatterns` - it isn't necessary with the custom resolver
@grantdaigh @leandertolksdorf Can you please try the following: `jest.config.js`: ``` module.exports = { "transform": { "^.+\\.(ts|tsx|js|jsx|mjs)$": [ "ts-jest" ] }, resolver: '/myResolver.ts' } ``` `myResolver.ts`: ``` const frameworks = ['angular',...
My solution above should take account of the fact you're using a framework and default to that package Are you saying this doesn't work for react? I tried on a...
If you're using CRA you can try the following in your package.json (the config above won't be picked up) ``` "test": "react-scripts test --transformIgnorePatterns \"/node_modules/(?!(@ag-grid-community|@ag-grid-enterprise)/)\"", ```
The package.json update could probably do with an update - if necessary can you please let me know how I go about submitting an update for it? thanks
Hi I completely missed that - thanks. I'm happy to submit the required change if you can point me in the right direction please - is there a readme or...
PR submitted (https://github.com/cdnjs/packages/pull/1664) - thanks for your help