7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
import {runCommand} from '../src/install'
|
|
|
|
test('runCommand', async () => {
|
|
const result = await runCommand('echo foo bar')
|
|
expect(result).toBe('foo bar')
|
|
})
|