@frinzekt/cypress-allure-plugin
Version:
allure reporting plugin for cypress modified for video. Originally by @shelex
24 lines (22 loc) • 517 B
JavaScript
/**
* Now all labels are set on test level
* Need to investigate if some should be on suite/currentExecutable
*/
const availableLabels = [
'suite',
'parentSuite',
'subSuite',
'epic',
'feature',
'story',
'severity',
'tag',
'owner',
'package'
];
const labelPattern = `@(${availableLabels.join('|')})\\("(.*?)"\\)`;
const linkPattern = `@(issue|tms)\\("(.*?)","(.*?)"\\)`;
module.exports = {
tagToLabel: new RegExp(labelPattern),
tagToLink: new RegExp(linkPattern)
};