chaijs / chai-as-promised

Extends Chai with assertions about promises.
MIT License
1.42k stars 112 forks source link

feat: move to ESM-only #287

Closed 43081j closed 4 months ago

43081j commented 4 months ago

Migrates to an ESM-only package structure.

The module must now be imported like so:

import chaiAsPromised from 'chai-as-promised';
import * as chai from 'chai';

chai.use(chaiAsPromised);

Depends on #286