Hi @Buchholz, Barbara A ,
Thanks for reaching out to Microsoft Q&A.
It sounds like you’ve got test cases in ADO but you’re not seeing the little “beaker” icon on your User Stories in Boards. The "beaker" icon only appears once your story is actually linked to test cases (manual or automated), so let’s make sure the association step is covered.
Here are a couple of common ways to light up that beaker:
- Manual test-case association
- Open your User Story in ADO.
- Click the “Associated automation” (or “Add test cases”) section on the work item form.
- Select the existing test cases you want to link.
- Save the story.
- Automated tests via pipeline
- Add the AzureTestPlan@0 task to your YAML or classic pipeline:
- task: AzureTestPlan@0 inputs: testSelector: 'automatedTests' testPlanOrRunSelector: 'testPlan' testPlan: '<your test plan ID>' testSuite: '<your test suite ID>' testConfiguration: '<your test configuration ID>' - Run the pipeline so it publishes test results back to your Test Plan.
- Once the run succeeds and the automated tests are associated, you’ll see the beaker icon (with the count of passing/failing tests) on the related User Story.
- Add the AzureTestPlan@0 task to your YAML or classic pipeline:
Hope this helps!
If the resolution was helpful, kindly take a moment to click on and click on Yes for was this answer helpful. And, if you have any further query do let us know.