Share via

Test Case Beaker

Buchholz, Barbara A 20 Reputation points
2026-05-13T15:56:03.8966667+00:00

How do I get the test case beaker to appear on the User Stories on the ADO Board? I copied a previously used

Azure DevOps
0 comments No comments

2 answers

Sort by: Most helpful
  1. Pravallika KV 16,945 Reputation points Microsoft External Staff Moderator
    2026-05-13T15:59:20.12+00:00

    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:

    1. 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.
      At that point you should see a test-case count (beaker) on the card in your backlog or board.
    2. 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.

    Hope this helps!


    If the resolution was helpful, kindly take a moment to click on User's imageand click on Yes for was this answer helpful. And, if you have any further query do let us know.

    Was this answer helpful?


  2. AI answer

    2026-05-13T15:56:15.52+00:00

    The beaker icon on Azure Boards appears when a work item (such as a User Story) has one or more linked test cases.

    To get the beaker to show on a User Story card on the board:

    1. Open the User Story in Azure Boards.
    2. Use Add test from the work item (inline tests) or create a requirement-based test suite that links to that User Story:
      • From the Test Plans hub, create a test plan and a requirement-based test suite for the User Story.
      • Add or create Test Case work items in that suite. When a test case is added to a requirement-based suite, it is automatically linked to the backlog item (User Story).
    3. Alternatively, from the board, expand inline tests and add tests directly to the User Story:
      • Go to Boards > Boards.
      • Open the User Story card, expand the inline tests panel, and add a new or existing test case. This automatically links the test case to the User Story.

    Once the User Story has at least one linked test case (via Add test or a requirement-based suite), the board shows the inline testing indicator (the beaker) and allows viewing and running tests directly from the card.

    Note: Using Add test or requirement-based suites is recommended over manually adding a generic Tested By link, because the board’s inline test status is driven by these inline/requirement-based test links.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.