DocumentationGovernance HubUser story completeness scoring

User story completeness scoring

5 min readLast updated 2026-04-22

Map tests to user stories and measure how well each story is covered by automated tests.

User story completeness scoring links your test suite to product requirements. See which stories have adequate test coverage and which need more.

Mapping tests to stories

  1. 1Import stories from Jira, Linear, or Azure DevOps
  2. 2Tag tests with story IDs using test metadata
  3. 3Check Studio calculates coverage per story automatically

Score calculation

A story is "complete" when it has at least one passing E2E test, one API test, and coverage of all critical paths. The score is the percentage of complete stories.

test('user can checkout', {
  metadata: { storyId: 'PROJ-123' },
}, async ({ page }) => {
  // test steps
});
typescript

Was this article helpful?

Still have questions?

Our support team is here to help. Reach out directly or search the docs.