interface-forge - v2.5.0
    Preparing search index...

    Interface FixtureConfiguration

    interface FixtureConfiguration {
        basePath?: string;
        directory?: string;
        includeSource?: boolean;
        useSubdirectory?: boolean;
        validateSignature?: boolean;
    }
    Index

    Properties

    basePath?: string

    Base directory for storing fixtures. Defaults to process.cwd()

    directory?: string

    Custom directory name for fixtures. Defaults to 'fixtures' Set to empty string to store fixtures in the same directory as the file path

    includeSource?: boolean

    Whether to include the factory function source in signature calculation. Defaults to true

    useSubdirectory?: boolean

    Whether to use subdirectories for fixtures. Defaults to true When true: fixtures are stored in a subdirectory (e.g., /path/fixtures/file.json) When false: fixtures are stored directly in the path (e.g., /path/file.json)

    validateSignature?: boolean

    Whether to validate factory signature changes. Defaults to true