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

8 lines
205 B
TypeScript
Raw Normal View History

import {runCommand} from '../src/install'
2021-07-15 07:24:13 +08:00
import {expect, test} from '@jest/globals'
test('runCommand', async () => {
const result = await runCommand('echo foo bar')
expect(result).toBe('foo bar')
})