Is there any way to add external links in test cafe metadata?

143 Views Asked by At

I am trying to organize our testing framework and what we have right now look something like:

test.meta({ testID: '1234' })('testTheButton', async () => {

    // the test code 

}

where the testID in metadata is referring to a testID in Testrail. what Im trying to do is to link this ID to actual test case in Testrail and make it clickable so it is faster to find the automated test cases in Testrail. so the main issue here is that I have no idea on how to make the test ID clickable or better say, to add external links in Testcafe metadata!

is this even possible??

Any help is appreciated.

thank you in advance

1

There are 1 best solutions below

0
On

Usually, IDE makes links clickable automatically if it has the full format. Try to send the full link to meta. Also, you can try to find an acceptable Reporter or create your own and format your string as required.

export default function () {
    return {
        async reportTaskStart (startTime, userAgents, testCount) {
        },

        async reportFixtureStart (name, path, meta) {
        },

        async reportTestDone (name, testRunInfo, meta) {
            this.write(format(meta.testID));
        },

        async reportTaskDone (endTime, passed, warnings, result) {
        }
    };
}