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