-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
[Jest 27 Async Transformer] Runtime not calling correct transform function #11226
Comments
Another thing:The current export interface Transformer<OptionType = unknown> {
canInstrument?: boolean;
createTransformer?: (options?: OptionType) => AsyncTransformer<OptionType> | Promise<AsyncTransformer<OptionType>>;
getCacheKey?: (sourceText: string, sourcePath: Config.Path, options: TransformOptions<OptionType>) => string | Promise<string>;
process?: (sourceText: string, sourcePath: Config.Path, options: TransformOptions<OptionType>) => TransformedSource | Promise<TransformedSource>;
} ^^^ This is what I expected, thoughts? @SimenB |
Async transformations are only supported in ESM mode, which is not activated in your case https://jestjs.io/docs/en/ecmascript-modules Doing Removing that import triggered some other dependency error, so I stopped digging. Async Explicit |
@SimenB Thanks for helping. I added that Node option and removed the tailwind stuff, now the transformer runs. However I got another error from And re async createTransformer I will make a PR this weekend. |
That doesn't seem related to a transformer but rather a resolver issue. Does not seem like a bug in Jest, though |
after looked into it yesterday. I realized this is indeed not a bug in jest, it was Vite transform the import path to the module id with |
Implementing #9505 should be relatively straightforward if you're up for it 🙂 But I'll close this as it's not a bug like you say |
I can try to implement it, altho this gonna be the first time I contribute to jest project, I gonna try my best. |
👍 Adding support in Feel free to ask questions over in #9505 (and/or open a Draft PR and we can discuss there) |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
🐛 Bug Report
Expect the runtime to call
transformAsync
instead oftransform
when the custom transformer only contains aprocessAsync
function.To Reproduce
Steps to reproduce the behavior:
git clone git@github.com:axe-me/vite-jest.git
pnpm install
at root dirpnpm build
to build the transformerpnpm install
pnpm test
collectCoverage: true
in jest.config.js, you are expected to see some other error. I believe they are caused by the same reason.Expected behavior
My processAsync get called instead of error out.
Link to repl or repo (highly encouraged)
https://github.com/axe-me/vite-jest
envinfo
System:
OS: macOS 11.2.2
CPU: (4) x64 Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz
Binaries:
Node: 14.7.0 - ~/.nvm/versions/node/v14.7.0/bin/node
Yarn: 1.22.10 - ~/.nvm/versions/node/v14.7.0/bin/yarn
npm: 7.5.4 - ~/.nvm/versions/node/v14.7.0/bin/npm
npmPackages:
jest: 27.0.0-next.5 => 27.0.0-next.5
One More thing:
Can we also make createTransformer function to be async as well, if you look into my transformer in the repo you can see I have to put in some hack to create my async transformer.
The text was updated successfully, but these errors were encountered: