@usbx/testing
v0.2.0
Published
Testing helpers for Universal Sandbox.
Readme
@usbx/testing
Testing helpers for Universal Sandbox.
Install
pnpm add @usbx/testing -DUsage
import { createSandboxClient } from "@usbx/core";
import { LocalProvider } from "@usbx/testing";
const client = createSandboxClient({
provider: new LocalProvider(),
});
const sbx = await client.create({ name: "local" });
const result = await sbx.exec("echo", ["hello"]);