Hey Niko,
thanks again for providing us the file; as mentioned the fixes regarding e.g. importing bold text will be live soon.
To share it with the community as well – here’s again the code snippet for the browsers dev-console to copy test cases from one project to another:
// 123 = TC ID
var tc = await testiny.testcase.findOne(123);
tc.project_id = 2; // use new project ID
await testiny.testcase.insert(tc);
There’s no “move” yet; for not use “copy” and the delete the test:
await testiny.testcase.remove({id: 123})
Regards,
Chris