javascript - nightwatch.js 在测试套件结束时暂停

标签 javascript node.js selenium nightwatch.js

我一直在使用 nightwatch.js 进行功能测试自动化。问题是测试套件完成后测试暂停。它不会结束该过程。代码如下所示:

var afterSuite = function(browser) {
    dbFixture.deleteCollectionItemById(companyId, 'cilents');
    dbFixture.deleteCollectionItemById(customerId, 'users');
    dbFixture.deleteCollectionItemById(assetId, 'assets');
    dbFixture.deleteFile(imageId);
    browser.end();
};

var loginTest = function(browser) {
    dbFixture.createCompany(function(company) {
        dbFixture.createCustomer(company._id, function(customer, assetid, imageid) {
            companyId = company._id;
            customerId = customer._id;
            assetId = assetid;
            imageId = imageid;
            goTo.goTo(url.localhost_home + url.login, browser);
            login.loginAsAny(customer.email, browser);
            newCustomerLoginAssert.assertNewCustomerLogin(browser);
        });
    });
};

module.exports = {
    after: afterSuite,
    'As a Customer, I should be able to login to the system once my registration has been approved': loginTest
};

我也尝试在 afterSuite 中添加 done(); 但仍然没有成功。提前致谢!

最佳答案

一种方法是注册一个全局reporter 函数,该函数在所有测试完成后运行并相应地退出进程,即。如果测试失败或出错,exit 1,否则exit 0

例如。 http://nightwatchjs.org/guide#external-globals

在你的 nightwatch.json 配置中添加:

{
  "globals_path": "./config/global.js"
}

然后在./config/global.js

module.exports = {
    /**
     * After all the tests are run, evaluate if there were errors and exit appropriately.
     *
     * If there were failures or errors, exit 1, else exit 0.
     *
     * @param results
     */
    reporter: function(results) {
        if ((typeof(results.failed) === 'undefined' || results.failed === 0) &&
        (typeof(results.error) === 'undefined' || results.error === 0)) {
            process.exit(0);
        } else {
            process.exit(1);
        }
    }
};

关于javascript - nightwatch.js 在测试套件结束时暂停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33409800/

相关文章:

javascript - 如何根据用户extjs更改scss变量值

Javascript Promises - 获取未被拒绝的数组

node.js - 使用 passport-google-oauth20 时自动登录

c# - driver.Close 后如何从 ChromeDriver 重新打开浏览器?

javascript - 以编程方式测试特定的 css 属性兼容性(调整文本区域的大小支持)

javascript - 从 1 到 10 的 Onkeypress 数字验证

javascript - 为什么在 web 和 nodejs 上运行 JavaScript 会有不同的输出?

javascript - i18next 重新加载翻译,无需重新初始化

java - 如何识别表格中的单元格并点击它?

selenium - 为什么在Docker中运行ChromeDriver 2.31无法启动?