Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ShardingOption

import type { ShardingOption } from "https://googleapis.deno.dev/v1/testing:v1.ts";

Options for enabling sharding.

interface ShardingOption {
manualSharding?: ManualSharding;
smartSharding?: SmartSharding;
uniformSharding?: UniformSharding;
}

§Properties

§
manualSharding?: ManualSharding
[src]

Shards test cases into the specified groups of packages, classes, and/or methods.

§
smartSharding?: SmartSharding
[src]

Shards test based on previous test case timing records.

§
uniformSharding?: UniformSharding
[src]

Uniformly shards test cases given a total number of shards.