Chai Assertions for Promises
It is a fork of Chai as Promised for supporting Chai >= 5.x and typescript.
Please see documentation at chai-as-promised
Installation
npm uninstall @types/chai-as-promised chai-as-promised --save-dev --force
npm install chai-promised --save-dev
Usage
This library was developed primarily to support the development of unit tests using typescript.
import { chaiAsPromised } from 'chai-promised';
import * as chai from 'chai';
chai.use(chaiAsPromised);