mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-15 08:31:14 -07:00
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
19 lines
353 B
TypeScript
19 lines
353 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type { SandboxConfig } from '@google/gemini-cli-core';
|
|
|
|
export function createMockSandboxConfig(
|
|
overrides?: Partial<SandboxConfig>,
|
|
): SandboxConfig {
|
|
return {
|
|
enabled: true,
|
|
allowedPaths: [],
|
|
networkAccess: false,
|
|
...overrides,
|
|
};
|
|
}
|