一个文件中的多个跑步者只产生第一个的结果

Multiple runners in one file only yield results of the first

我正在尝试使用 TestCafe 来自动化我项目的初始设置。在安装过程中,必须先发出一个需要很长时间的 POST 请求,然后才能继续安装。这是我的 runner.js,它在节点 10 中 运行ning:

const longRunningPostRequest = require('./setup/seed-database');
const createTestCafe = require('testcafe');

const RUN_OPTIONS = {pageLoadTimeout: 120000, selectorTimeout: 15000};

const setupLicense = async () => {
  const testcafe = await createTestCafe('localhost', 1337, 1338, undefined, true);
  const runner = testcafe.createRunner();
  const failedCount = await runner
    .src(['fixtures/setup-license.js'])
    .browsers(['chrome -incognito'])
    .run(RUN_OPTIONS);
  await testcafe.close();
};

const setupData = async () => {
  const testcafe = await createTestCafe('localhost', 1337, 1338, undefined, true)
  const runner = testcafe.createRunner();
  await runner
    .src(['fixtures/setup-wizard.js'])
    .browsers(['chrome -incognito'])
    .run(RUN_OPTIONS);
  await testcafe.close();
};

// running them all in sequence
setupLicense()
  .then(() => longRunningPostRequest()) // long-running POST request. Typically takes around 100 seconds to complete
  .then(() => setupData())
  .catch(err => console.log('Error occured:', err));

当我 运行 应用程序 node runner.js 时,它们正在工作。但是,仅显示 setup-license.js 中的灯具结果,而第二个 运行ner fixtures/setup-wizard.js 中的灯具不显示任何输出(但它们正在 运行 和正在工作),但使用起来非常烦人,因为如果失败,错误消息也会被吞没。我所做的解决方法是注释掉 setupLicense 夹具的内容,以便出现 setupData 的输出。

我该如何解决这个问题?

尝试使用最新的testcafe@0.23.3 版本。该团队最近修复了一个可能导致此类问题的错误 - TestCafe 在未指定明确报告程序时关闭了 stdout 输出流。这可以防止在从一个脚本文件开始的第二个和连续的测试会话中显示任何测试结果。

作为解决方法,您可以启用设置代码的 spec reporter explicitly by adding the .reporter('spec') call,如本例所示:

gist.github.com/AndreyBelym/c9afd908d4b2891a62a4ba87623ec064