generated from christian-bromann/typescript-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathutils.test.ts
30 lines (24 loc) · 1010 Bytes
/
utils.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { vi, test, expect, beforeEach, afterEach } from 'vitest'
import { runProgram, getPackageVersion } from '../src/utils'
const consoleLog = console.log.bind(console)
const processExit = process.exit.bind(process)
beforeEach(() => {
process.exit = vi.fn()
console.log = vi.fn()
})
afterEach(() => {
process.exit = processExit
console.log = consoleLog
})
test('runProgram', async () => {
expect(await runProgram('echo', ['123'], {})).toBe(undefined)
await runProgram('node', ['-e', 'throw new Error(\'ups\')'], {}).catch((e) => e)
expect(vi.mocked(console.log).mock.calls[0][0]).toMatch(/Error calling: node -e throw new Error/)
expect(process.exit).toBeCalledTimes(1)
await runProgram('foobarloo', [], {}).catch((e) => e)
expect(vi.mocked(console.log).mock.calls[1][0]).toMatch(/spawn foobarloo ENOENT/)
expect(process.exit).toBeCalledTimes(2)
})
test('getPackageVersion', async () => {
expect(await getPackageVersion()).toEqual(expect.any(String))
})