banira
    Preparing search index...

    Interface SmokeOptions

    interface SmokeOptions {
        blockNetwork?: boolean;
        compilerOptions?: CompilerOptions;
        confineToRoot?: string;
        readyTimeout?: number;
        reflection?: boolean;
        slots?: boolean;
    }
    Index

    Properties

    blockNetwork?: boolean

    Strip script-reachable network APIs (XHR/WebSocket/fetch) from the mount window so untrusted component code can't make outbound requests. Forwarded to TestHelper.blockNetwork. See security-findings #1.

    compilerOptions?: CompilerOptions
    confineToRoot?: string

    Confine each component's bundled module graph to this directory (local imports can't pull in out-of-tree source). Forwarded to TestHelper.confineToRoot. See security-findings #22.

    readyTimeout?: number

    Max ms to wait for each element to register (forwarded to TestHelper).

    reflection?: boolean

    Also run the attribute↔property reflection round-trip and report mismatches (#39).

    slots?: boolean

    Also assert declared @slots project and flag undeclared shadow slots (#40).