Files
actions-setup-docker-compose/__tests__/install.test.ts

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')
})