-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pnpnm workspaces and project root #959
Comments
Hi. This is not enough information for us to do anything with. Please open a new issue, and follow the issue template. Thanks! |
I have the same issue using ts-jest with ppm. Looks like it may be related to #823. |
The workaround is to explicit specify the package.json. jest.config.js: module.exports = {
preset: "ts-jest",
testEnvironment: "node",
globals: {
"ts-jest": {
packageJson: "package.json",
},
},
} Can we make |
beenotung
added a commit
to beenotung/ts-jest
that referenced
this issue
Oct 10, 2020
Before this patch, when I run jest test with jest.config.js generated `ts-jest config:init`, it shows below warning message: ``` ts-jest[config] (WARN) Unable to find the root of the project where ts-jest has been installed. ``` This patch addresses the issue kulshekhar#959
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I get a
ts-jest[config] (WARN) Unable to find the root of the project where ts-jest has been installed.
warning when using in apnpm
workspace.It doesn't seem to be impacting the transpilation or type checking though.
Is there any way I can fix this?
The text was updated successfully, but these errors were encountered: