mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
8 lines
286 B
TypeScript
8 lines
286 B
TypeScript
import { type RuntimeConfigSnapshot, runtimeConfigOrDefault } from "../../src/domain/runtime/config";
|
|
|
|
export function runtimeConfigFixture(overrides: Partial<RuntimeConfigSnapshot> = {}): RuntimeConfigSnapshot {
|
|
return {
|
|
...runtimeConfigOrDefault(null),
|
|
...overrides,
|
|
};
|
|
}
|