BryanHuntNV
BryanHuntNV
Also note that chai.use() doesn't currently work without a code change: https://github.com/chaijs/chai/issues/1569
See also: https://github.com/chaijs/chai/issues/1570
FWIW, my typical use-case for chai-as-promised (using mocha) is: ```ts return expect(testClass.testFunction(args)).to.eventually.be.rejectedWith(Error); ```
Does this essentially mean that chai.use(chai-as-promised) is no longer supported?
@43081j thanks for the clarification. Is there an ETA for a fix? I'm trying to prioritize upgrading to chai v5 vs waiting for the fix. We have hundreds of tests...
@43081j Thank you for the guidance. I appreciate that!