Add option to move/copy test cases & folders to other projects and to duplicate entire folder

Hey again,

While we’re working on the UI, it is already possible to copy tests between projects using the API:

  // 123 = TC ID
  var tc = await testiny.testcase.findOne(123);
  tc.project_id = 2; // use new project ID
  await testiny.testcase.insert(tc);

Also see this post.

Regards,
Chris