---
sidebar_position: 7
title: Reviewing Results
---

# Reviewing Results

After running tests with `--sync`, all results are available in the Zibby dashboard for review.

## Test Runs

Go to your project's **Test Runs** page to see all executions.

Each run shows:
- Run name and timestamp
- Pass/fail status
- Video thumbnail (hover to preview)
- Source (local spec or cloud test case)

## Video Replay

Click on a test run to open the full replay view:

### Video Player

- Full video recording of the browser session
- Playback controls (play, pause, seek)
- Speed control (0.5x, 1x, 1.5x, 2x)
- Cinematic mode for full-screen viewing

### Action Timeline

A timeline below the video shows every action the AI performed:

- **Navigate** — page navigations
- **Click** — button and link clicks
- **Type** — keyboard input
- **Assert** — verification checks
- **Screenshot** — captured screenshots

Click any action to jump to that point in the video.

### Events Sidebar

A detailed list of all events with:
- Timestamps
- Action descriptions
- Element selectors
- AI-generated captions explaining each action

## Generated Scripts

The **Scripts** tab shows the auto-generated Playwright test script:

```javascript
const { test, expect } = require('@playwright/test');

test('User Login Flow', async ({ page }) => {
  await page.goto('https://example.com/login');
  await page.fill('[data-testid="email"]', 'test@example.com');
  await page.fill('[data-testid="password"]', 'TestPass123');
  await page.click('[data-testid="submit"]');
  await expect(page).toHaveURL('/dashboard');
});
```

Click **Copy** to copy the script to your clipboard and add it to your test suite.

## Test Case Details

The **Test Case** tab displays the original test specification that was executed, with syntax highlighting.

## Analysis Results

For ticket analyses, the analysis page provides:

### Code Diff Viewer

- Side-by-side diff of all code changes
- File tree navigation
- **Create Pull Request** button to push changes to GitHub

### Test Cases

- Structured test cases with steps, data, and expected outcomes
- Editable — refine test cases before running them
- Auto-saves changes

### Pipeline View

Live status of each analysis step:

| Step | Description |
|---|---|
| Setup | Repository cloned and initialized |
| Analyze Ticket | AI reads and understands the ticket |
| Generate Code | Code changes produced |
| Generate Test Cases | Test cases written |
| Finalize | Report compiled and uploaded |

Each step shows logs that can be expanded for debugging.

## Collections

Organize runs into collections for grouping related tests:

- View collections in the **Collections** sidebar
- Each collection can have subfolders
- Drag runs between collections
- Filter and search within collections

## Sharing Results

Share a test run with your team by copying the URL from the browser. Anyone with access to the project can view the results.
