After upgrading Vue in my project from 3.2.37
to 3.2.39
, running Jest now results in the following error:
[UnhandledPromiseRejection: This error occurred due to either throwing inside an async function without a catch block, or rejecting a promise that was not handled with .catch(). The promise rejected with the reason "TypeError: Cannot read properties of null (reading 'isCE')".] {
code: 'ERR_UNHANDLED_REJECTION'
}
When reverting back to the previous Vue version, the tests pass successfully. What could be causing the isCE error? Is it related to a breaking change?