UNPKG

rwsdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

14 lines (13 loc) 509 B
import { SmokeTestResult } from "./types.mjs"; /** * Generates the final test report without doing any resource cleanup. */ export declare function generateFinalReport(): Promise<void>; /** * Updates the test status in the state object and reports the result. */ export declare function reportSmokeTestResult(result: SmokeTestResult, type: string, phase?: string, environment?: string): void; /** * Initialize test statuses based on test options */ export declare function initializeTestStatus(): void;