unplugin/unplugin-vue2-script-setup

Jest is broken since v0.10.2

dm4t2 opened this issue · 3 comments

dm4t2 commented

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(...).

antfu commented

Can you share a minimal reproduction? Thanks.

antfu commented

You might need to use async processAsync hook instead of process. But it involved another issue of Jest jestjs/jest#11458