mirror of
https://github.com/badlogic/pi-mono.git
synced 2026-05-23 21:25:27 +00:00
29 lines
840 B
TypeScript
29 lines
840 B
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import { RpcClient } from "../src/modes/rpc/rpc-client.js";
|
|
|
|
type RpcClientPrivate = {
|
|
send: (command: { type: string }) => Promise<unknown>;
|
|
getData: <T>(response: unknown) => T;
|
|
};
|
|
|
|
describe("RpcClient clone", () => {
|
|
it("sends the clone RPC command", async () => {
|
|
const client = new RpcClient();
|
|
const privateClient = client as unknown as RpcClientPrivate;
|
|
const send = vi.fn(async () => ({
|
|
type: "response",
|
|
command: "clone",
|
|
success: true,
|
|
data: { cancelled: false },
|
|
}));
|
|
privateClient.send = send;
|
|
privateClient.getData = <T>(response: unknown): T => {
|
|
return (response as { data: T }).data;
|
|
};
|
|
|
|
const result = await client.clone();
|
|
|
|
expect(send).toHaveBeenCalledWith({ type: "clone" });
|
|
expect(result).toEqual({ cancelled: false });
|
|
});
|
|
});
|