How to better map automated test cases to Testiny

Hello everyone,

Currently I am a bit struggling to find the best way to map automated test cases to their relevant test cases on Testiny. For example, we are using Cypress and I want to have a clear understanding of which test cases I already cover with automation. I am currently mapping them manually by adding the test case id like “TC-1234” to the front of the each cypress test like below.

it("TC - 1234 / Log in successfully")

However this is really not very maintainable as you can imagine and required a lot of manual work in addition to beign error prone.

Is there anyone out there having a better solution here? Or maybe we have a cypress integration or such stuff developed by Testiny soon ? :slight_smile:

Cheers,
Mustafa

As far as I know there is no way (other than name) to uniquely identify testcases across multiple runs in Cypress.
If the folder path and/or title do not match with your automated test cases, there is no way around matching them using the testcase key (like your example).

What exactly are you trying to achieve?

I came to the same conclusion (one needs to use a key in the title).