Back to Ai

Jest: cannot find module '@ai-sdk/rsc'

content/docs/09-troubleshooting/60-jest-cannot-find-module-ai-rsc.mdx

2.1.10416 B
Original Source

Jest: cannot find module '@ai-sdk/rsc'

Issue

I am using AI SDK RSC and am writing tests for my RSC components with Jest.

I am getting the following error: Cannot find module '@ai-sdk/rsc'.

Solution

Configure the module resolution via jest config update in moduleNameMapper:

json
"moduleNameMapper": {
  "^@ai-sdk/rsc$": "<rootDir>/node_modules/@ai-sdk/rsc/dist"
}