I'm using a custom Jest transformer for usage with the Ref Sugar syntax: ``` const { raw } = require('unplugin-vue2-script-setup').default const transform = raw({ reactivityTransform: true }).transform module.exports = { process(source, filename, ...args) { const transformed = transform(source, filename) const code = transformed ? transformed.code : source return require('@vue/vue2-jest').process.call(this, code, filename, ...args) } } ``` However, this no longer works when updating from v0.10.1 to v.0.10.2, even with `await transform(...)`.
I'm using a custom Jest transformer for usage with the Ref Sugar syntax:
However, this no longer works when updating from v0.10.1 to v.0.10.2, even with
await transform(...).