我尝试使用在
Allure reporter
我创建了跑步者:
const createTestCafe = require('testcafe');
let testcafe = null;
createTestCafe('localhost', 1337, 1338)
.then(tc => {
testcafe = tc;
const runner = testcafe.createRunner();
return runner
.src(['tests/fixture1.js', 'tests/ingo1.js'])
.browsers(['chrome'])
.reporter('allure')
.run();
})
.then(failedCount => {
console.log('Tests failed: ' + failedCount);
testcafe.close();
});
启动脚本时,我收到消息“ Allure Reporter已启动”,完成后得到“ Allure Reporter完成”。但是在我的根文件夹中,我没有得到任何诱人的报告。我也尝试使用自己的配置文件
const DOC_ALLURE_CONFIG = {
CLEAN_REPORT_DIR: true,
COPY_HISTORY: true,
RESULT_DIR: '/allure/allure-results',
REPORT_DIR: '/allure/allure-report',
META: {
STORY_ID: 'STORY',
TEST_ID: 'ID',
SEVERITY: 'SEVERITY',
TEST_RUN: 'TEST_RUN'
},
STORY_LABEL: 'JIRA Story Link',
STORY_URL: 'https://jira.example.ca/browse/{{ID}}',
TEST_LABEL: 'JIRA Test Link',
TEST_URL: 'https://jira.example.ca/secure/Tests.jspa#/testCase/{{ID}}',
labels: {
screenshotLabel: 'Screenshot',
browserLabel: 'Browser',
userAgentLabel: 'User Agent',
allureStartMessage: 'Allure Ingo reporter started...',
allureClosedMessage: 'Allure Ingo reporter closed...'
}
};
module.exports = DOC_ALLURE_CONFIG;
这也不起作用。自定义消息未显示,仅显示默认消息。
看来,魅力插件会忽略所有内容,并且无法很好地识别我的节点模块。
我错过了什么设置才能在项目根目录获得吸引力报告?
(也尝试使用npm链接...)
最佳答案
TestCafe并不正式支持testcafe-reporter-allure
记者,因此我们仅建议您向问题的作者或魅力社区询问。
关于javascript - Testcafe和 Allure 记者,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56628927/