Member Junction
    Preparing search index...

    Represents a tag applied to a test run or test suite run. Tags are stored as JSON arrays in the database.

    interface TestTag {
        category?: string;
        color?: string;
        value: string;
    }
    Index

    Properties

    category?: string

    Optional category for grouping tags (e.g., "Model", "Environment", "Version")

    color?: string

    Optional color for display purposes (hex code)

    value: string

    The tag value (e.g., "Opus 4.5", "GPT-4", "Production Config")