Sebastian
Sebastian

Reputation: 395

Find out all testcases not assigned to a test plan in Kiwi TCMS

Is there a way to find out all testcases not assigned to a test plan?

We have many test cases and it is difficult to find out which test cases have not yet been assigned to a test plan.

Upvotes: 0

Views: 271

Answers (1)

Alexander Todorov
Alexander Todorov

Reputation: 2245

So finding test cases which are not attached to a Test Plan is possible, but not very handy ATM. Please open an issue on GitHub to request an enhancement for the Test Case search page.

If you use the JavaScript API inside a browser's console then the following will work for you:

jsonRPC('TestCase.filter', {plan:4638}, console.log) - will filter all test cases attached to TP 4638.

jsonRPC('TestCase.filter', {plan:null}, console.log) - will filter all test cases which are not attached to any plans. On https://public.tenant.kiwitcms.org currently this returns 117 cases.

Disclaimer: this answer has been provided to you by a Kiwi TCMS team member.

Upvotes: 1

Related Questions