Rocky_Mountain_Vending/.pnpm-store/v10/files/8e/d82a8dafe672073806363fad9afa409117199cecd5a979f136e44939d59765cf03f0dd138f24840ffdc47212f3fac9eda86dfb8f230c2761858c00f46c81aa
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

36 lines
No EOL
1.3 KiB
Text

export type Run = {
networkRequests: string[] | undefined;
lhr: LH.Result;
artifacts: LH.Artifacts;
lighthouseLog: string;
assertionLog: string;
};
export type SmokehouseResult = {
id: string;
passed: number;
failed: number;
runs: Run[];
};
/**
* Runs the selected smoke tests. Returns whether all assertions pass.
* @param {Array<Smokehouse.TestDfn>} smokeTestDefns
* @param {Partial<Smokehouse.SmokehouseOptions>} smokehouseOptions
* @return {Promise<{success: boolean, testResults: SmokehouseResult[]}>}
*/
export function runSmokehouse(smokeTestDefns: Array<Smokehouse.TestDfn>, smokehouseOptions: Partial<Smokehouse.SmokehouseOptions>): Promise<{
success: boolean;
testResults: SmokehouseResult[];
}>;
/**
* Parses the cli `shardArg` flag into `shardNumber/shardTotal`. Splits
* `testDefns` into `shardTotal` shards and returns the `shardNumber`th shard.
* Shards will differ in size by at most 1.
* Shard params must be 1 ≤ shardNumber ≤ shardTotal.
* @param {Array<Smokehouse.TestDfn>} testDefns
* @param {string=} shardArg
* @return {Array<Smokehouse.TestDfn>}
*/
export function getShardedDefinitions(testDefns: Array<Smokehouse.TestDfn>, shardArg?: string | undefined): Array<Smokehouse.TestDfn>;
export const DEFAULT_RETRIES: 0;
export const DEFAULT_CONCURRENT_RUNS: 5;
//# sourceMappingURL=smokehouse.d.ts.map