db.close()承诺未决:测试运行完成后一秒钟,Jest没有退出

时间:2020-05-10 13:24:18

标签: javascript mongodb jestjs

尝试开玩笑,使用以下代码测试不会终止。 db.close Promise的状态仍处于待处理状态。

执行测试时,我收到以下消息。你能帮我解决这个问题吗?谢谢。

测试运行一秒钟后,Jest没有退出。

这通常意味着您的测试中没有停止异步操作。考虑使用--detectOpenHandles运行Jest来解决此问题。

test('Should be ', async () => {

    /*DO NOT call the next four function directly,  check if a  merchant/terminal exists before starting
    a transaction and insert document if required.*/
    //functions.insertTerminalRecordInMongo();
    //functions.insertTerminalRecordInMongo();

    var record = await functions.getMongoField('terminal', {'attributes.TID': 'T55001001'});
    //functions.deleteTerminalRecordInMongo('terminal',{'attributes.TID' :'T55001001'})
    DE22Test.buildTransactionAndSend({MTI: "1104", dataElements: {DE22: "XYZ"}})
    expect(functions.getAsRequestField('DE22')).toBe("XYZ")
    expect(functions.getAsResponseField('DE39')).toBe("00")
    expect(functions.getAsResponseField('DE01')).toBe("00")
})

用于从mongodb检索文档的功能。

 //Return a mongo record based on collectionName and FieldName
    getMongoField: (collectionName, queryElement) => {
        console.info("Querying Mongo");
        mongoClient.connect(uri, function (err, db) {
            if (err) throw err;
            dbo = db.db("axis")
            dbo.collection(collectionName).find({}, queryElement).toArray(function (err, result) {
                if (err) throw err;
                console.info('Queried document', result[0]);
            });
            db.close()
        })
    },

1 个答案:

答案 0 :(得分:0)

对不起,我想发表评论,但由于声誉较低,我不能。 从代码片段来看,数据库操作本质上是异步的,这意味着您需要实现异步代码,因此最终代码将在关闭数据库后终止。

const db = await mongoClient.connect(uri)
// Do your tasks
await db.close()

编辑

别忘了将代码包装在try catch块周围,以进行错误处理。