API reference › @evolu/common › Test › TestDeps
type TestDeps = Omit<RunDeps, "console" | "time"> &
TestConsoleDep &
TestTimeDep &
RandomLibDep;
Defined in: packages/common/src/Test.ts:39
Cheap deterministic baseline deps for tests.
TestDeps includes test-friendly replacements for RunDeps, such as
TestConsole and TestTime, plus extra helpers commonly useful in
tests and fixtures, such as randomLib (only that for now).
Use it directly for synchronous test setup, fixtures, and helpers. It is also intentionally the base deps used by testCreateRun.