Ahn

Results 296 comments of Ahn

I have the same issue that I ran into `runtime error (Unknown variable dynamic import)`

I am looking forward to this feature too

401 means unauthorized. Look like your build server doesn't have authority to access your private registry.

Please provide your reproduce scenario with https://github.com/thymikee/jest-preset-angular/tree/main/examples

workaround is you should not use `import type` if you have anything injected in `constructor`. Another workaround is adjust the `include` field in `tsconfig.spec.json` to be ``` { //... "include":...

About how the syntax, I meant `import { Request }` instead of `import type { Request }`. The drawback of changing `include` in tsconfig might be that Jess might start...

I added a bit explanation also in a similar issue.

import meta is an ESM feature which doesn’t work with default NodeJs commonjs mode. You need to run Jest in ESM mode. you can check our documentation how to use...