# Get a prioritized fix list for your actor tests

**Use case:** 

See the highest-impact fixes for your test suite — coverage blind spots and what to address first, ranked by priority.

## Input

```json
{
  "targetActorId": "ryanclinton/usgs-earthquake-search",
  "preset": "auto",
  "testCases": [
    {
      "name": "Contact scraper smoke test",
      "input": {
        "urls": [
          "https://example.com"
        ]
      },
      "assertions": {
        "minResults": 1,
        "requiredFields": [
          "email",
          "domain"
        ],
        "fieldPatterns": {
          "email": "^[^@\\s]+@[^@\\s]+\\.[^@\\s]+$"
        },
        "maxDuration": 120
      }
    }
  ],
  "enableBaseline": true,
  "timeout": 300,
  "memory": 512,
  "maxSampleItems": 1000
}
```

## Output

```json
{
  "decision": {
    "label": "Decision",
    "format": "string"
  },
  "remediation": {
    "label": "Fix cards",
    "format": "array"
  },
  "scoreBreakdown": {
    "label": "Score breakdown",
    "format": "object"
  },
  "suiteCoverage": {
    "label": "Suite coverage",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Actor Test Runner — Validate Inputs, Outputs & Error Handling](https://apify.com/ryanclinton/actor-test-runner) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/actor-test-runner) to learn more, explore other use cases, and run it yourself.