0

我正在运行一些测试脚本。我正在使用 csvtoparse 将 csv 文件转换为 json,并且我正在尝试使用 module.exports 导出对象集。我的代码如下所示:

const csv = require('csvtojson');

async function getData(){
    const jsonArray=await csv().fromFile('./test1.csv');
    return jsonArray;
}
module.exports = {
    getData: getData
}

但是,我在终端中收到此错误

  ●  Cannot log after tests are done. Did you forget to wait for something async in your test?
    Attempted to log "[
      {
        TESTCASE_ID: '1',
        BROWSER_TYPE: 'chromium',
        BASE_URL: 'https://css-tricks.com/'
      },
      {
        TESTCASE_ID: '2',
        BROWSER_TYPE: 'chromium',
        BASE_URL: 'https://css-tricks.com/'
      }
    ]".

有没有办法遍历 csv 并在 nodejs 中导出每个 json 对象?

4

0 回答 0