I'm using codecpetjs in order to run some tests, to do so I suppose to enter my test path into the "tests" lable. I want to do that, but instead of passing path, I want to pass a xml file which will be the source of the tests to be run. Is that possible? I know there is another way, which is to pass an array of strings, but I want to check if there is a way to do it with xml.
exports.config = {
tests: './*_test.js',
timeout: 10000,
output: '',
helpers: {},
include: {},
bootstrap: false,
mocha: {},
// require modules
require: ["ts-node/register", "should"]
}