Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface RecipeEntry

    A single recipe entry describing a reusable test pattern.

    Recipes are curated test patterns that AI agents can emit verbatim or adapt. role indicates who the recipe is primarily designed for. priority indicates how important it is for adoption.

    Provide reusable SAP Fiori test patterns for AI generation.

    AI recipe lookup, test scaffolding, human reference.

    const entry: RecipeEntry = {
    id: 'login-sap-cloud',
    title: 'Login to SAP BTP via SAML',
    description: 'Authenticates against SAP BTP using cloud SAML strategy',
    category: 'auth',
    role: 'both',
    priority: 'essential',
    code: "await auth.loginCloud({ user: process.env.SAP_USER! })",
    tags: ['auth', 'saml', 'btp'],
    };
    interface RecipeEntry {
        category: string;
        code: string;
        description: string;
        id: string;
        priority: RecipePriority;
        role: RecipeRole;
        tags: string[];
        title: string;
    }
    Index

    Properties

    category: string

    Category for grouping and filtering (e.g. 'auth', 'navigation').

    code: string

    Ready-to-use TypeScript code for the recipe.

    description: string

    One or two sentence explanation of what this recipe demonstrates.

    id: string

    Unique kebab-case identifier for this recipe.

    priority: RecipePriority

    Priority level for adoption guidance.

    Who this recipe is intended for.

    tags: string[]

    Free-form tags for semantic search.

    title: string

    Short descriptive title shown in documentation and AI context.