testplane
Version:
Tests framework based on mocha and wdio
10 lines (9 loc) • 330 B
TypeScript
import type { TestSet } from "./test-set";
export declare class SetCollection {
#private;
static create(sets: Record<string, TestSet>): SetCollection;
constructor(sets: Record<string, TestSet>);
groupByFile(): Record<string, unknown>;
getAllFiles(): string[];
groupByBrowser(): Record<string, string[]>;
}