This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Maneger/tests/internal/childPromised.ts

7 lines
310 B
TypeScript

import { execAsync, execFileAsync, commendExists } from "../../src/lib/childPromisses";
describe("Child Process Async/Await", () => {
it("Exec", async () => execAsync("ls .."));
it("Exec File", async () => execFileAsync("ls", [".."]));
it("Command Exists", async () => commendExists("bash", false));
});