mikhail-angelov / mongo-unit

MIT License
72 stars 39 forks source link

Fix rmDirSync deprecation #68

Closed exptom closed 10 months ago

exptom commented 10 months ago

Node complains on each test run:

[DEP0147] DeprecationWarning: In future versions of Node.js, fs.rmdir(path, { recursive: true }) will be removed. Use fs.rm(path, { recursive: true }) instead

rmDirSync with recursive flag is deprecated. Replaced with rmSync() instead.

exptom commented 10 months ago

Thanks for merging this @mikhail-angelov . Would you be able to publish a new release with the bugfix in?