setup-cpp/packages/exec-powershell/__tests__/index.test.ts

10 lines
325 B
TypeScript

import { execPowershell, execPowershellSync, getPowerShell } from "../src/index.js"
describe("exec-powershell", () => {
it("should be a function", () => {
expect(execPowershell).toBeInstanceOf(Function)
expect(execPowershellSync).toBeInstanceOf(Function)
expect(getPowerShell).toBeInstanceOf(Function)
})
})