mirror of
https://github.com/logos-storage/logos-storage-installer.git
synced 2026-01-02 13:33:11 +00:00
15 lines
310 B
JavaScript
15 lines
310 B
JavaScript
import { vi } from "vitest";
|
|
|
|
export const mockInstaller = {
|
|
isCodexInstalled: vi.fn(),
|
|
getCodexVersion: vi.fn(),
|
|
installCodex: vi.fn(),
|
|
uninstallCodex: vi.fn(),
|
|
};
|
|
|
|
export const mockProcessControl = {
|
|
getNumberOfCodexProcesses: vi.fn(),
|
|
stopCodexProcess: vi.fn(),
|
|
startCodexProcess: vi.fn(),
|
|
};
|