more tests

This commit is contained in:
Andras Schmelczer 2026-05-03 09:35:56 +01:00
parent b5f448706e
commit 39c5591d36
8 changed files with 281 additions and 2 deletions

View file

@ -18,7 +18,9 @@ export type TestStep =
| { type: "barrier" }
| { type: "assert-consistent"; verify?: (state: AssertableState) => void }
| { type: "pause-websocket"; client: number }
| { type: "resume-websocket"; client: number };
| { type: "resume-websocket"; client: number }
| { type: "sleep"; ms: number }
| { type: "reset"; client: number };
export interface TestDefinition {
description?: string;