Jest 与 MongoDB 一起使用

2021-09-18 20:30 更新

借助全局设置/拆卸异步测试环境API,Jest 可以与MongoDB顺利工作。

使用 jest-mongodb 预设

Jest MongoDB提供了使用 MongoDB 运行测试所需的所有配置。

首先安装 ​@shelf/jest-mongodb

  1. yarn add @shelf/jest-mongodb --dev

在 Jest 配置中指定预设:

  1. {
  2. "preset": "@shelf/jest-mongodb"
  3. }

写你的测试

  1. const {MongoClient} = require('mongodb');
  2. describe('insert', () => {
  3. let connection;
  4. let db;
  5. beforeAll(async () => {
  6. connection = await MongoClient.connect(global.__MONGO_URI__, {
  7. useNewUrlParser: true,
  8. });
  9. db = await connection.db(global.__MONGO_DB_NAME__);
  10. });
  11. afterAll(async () => {
  12. await connection.close();
  13. await db.close();
  14. });
  15. it('should insert a doc into collection', async () => {
  16. const users = db.collection('users');
  17. const mockUser = {_id: 'some-user-id', name: 'John'};
  18. await users.insertOne(mockUser);
  19. const insertedUser = await users.findOne({_id: 'some-user-id'});
  20. expect(insertedUser).toEqual(mockUser);
  21. });
  22. });

无需加载任何依赖项。

有关详细信息,请参阅文档(配置 MongoDB 版本等)。


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号