If test was moved to another suite on Testomat.io, then on next import test duplicate will be created. **Video**: https://github.com/user-attachments/assets/2130998f-4a63-43c0-bf7a-24db8748a039 **Way to fix**: If Test in source code have Testomatio id, attach it to "name" field Example: ```code @TestId("31ab661c") @Test @Title("testAuthorCreation JUnit") @Disabled @Execution(ExecutionMode.CONCURRENT) void testAuthorCreation() { assertNotNull(author); assertEquals("A001", author.getId()); assertEquals("John", author.getFirstName()); assertEquals("Doe", author.getLastName()); } ``` On import, "name" field == "testAuthorCreation @T31ab661c"
If test was moved to another suite on Testomat.io, then on next import test duplicate will be created.
Video:
Screencast.from.10.03.26.13.16.26.webm
Way to fix:
If Test in source code have Testomatio id, attach it to "name" field
Example:
On import, "name" field == "testAuthorCreation @T31ab661c"