1
0
silverbullet/plug-api/lib/syscall_mock.ts
2023-11-29 16:51:28 +01:00

11 lines
279 B
TypeScript

import { YAML } from "../../common/deps.ts";
globalThis.syscall = (name: string, ...args: readonly any[]) => {
switch (name) {
case "yaml.parse":
return Promise.resolve(YAML.load(args[0]));
default:
throw Error(`Not implemented in tests: ${name}`);
}
};