Files
actions-setup-docker-compose/__tests__/install.test.ts
2021-07-15 07:28:17 +08:00

8 lines
205 B
TypeScript

import {runCommand} from '../src/install'
import {expect, test} from '@jest/globals'
test('runCommand', async () => {
const result = await runCommand('echo foo bar')
expect(result).toBe('foo bar')
})