Results 15 comments of Eyal Roth

It's worth noting that ScalaTest has [a similar issue](https://github.com/scalatest/scalatest/issues/1454) with what seem to be relevant information.

I'm not sure. My guess would be that either the vintage engine (junit 4) knows how to work with (junit 5) extensions, or that each engine will exclusively use the...

`mavenLocal` is used for something else actually (see [documentation](https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local)). You don't have to publish munit, you can simply build the jar and point gradle to use it as a dependency...

@ephys Awesome, that's great to hear 😃

This problem also reproduces when trying to move an SQS mapping from a function's `Events`: ```yaml MyFunction: Type: AWS::Serverless::Function Properties: Events: Queue: Type: SQS Properties: Queue: !GetAtt MyQueue.Arn ``` to...

@feliperli I updated to the latest Jest (`29.3.1`) and I get the same error. I'm not sure about the test setup of create-react-app as I'm not using React.

@feliperli Sorry for the late reply. The snippet you added makes the test fail (as expected) because it makes the line `Promise.reject` return a Bluebird (rejected) promise instead of a...

@SimenB I don't see why Jest fails because of this. The promise returned from `bluebird.each` is still a rejected promise: ```js const p = await each([Promise.reject('booo')], () => {}).catch(e =>...