Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 NodeUnit 中编写一些集成测试。我的测试工作正常,但测试运行程序挂起,因为knex保持 PostgreSQL 数据库连接打开。
我可以通过调用knex.destroy()my来释放它tearDown,但不幸的是,我的测试套件的其余部分(以及其他文件中的测试)不再可以使用数据库。
knex.destroy()
tearDown
在所有测试运行后,有没有办法实现tearDown只运行一次?