1
0
mirror of https://github.com/benjlevesque/short-sha.git synced 2025-12-06 01:37:51 +01:00
Files
short-sha/__tests__/main.test.ts
Benjamin LEVESQUE 9f96a4f558 short-sha
2020-03-09 22:00:34 +01:00

16 lines
565 B
TypeScript

import * as process from 'process'
import * as cp from 'child_process'
import * as path from 'path'
// shows how the runner will run a javascript action with env / stdout protocol
test('test runs', () => {
process.env['GITHUB_SHA'] = '6e8dcce3fd71cfe9aca3e18c82255dd1e4052aa1'
process.env['INPUT_LENGTH'] = '6'
const ip = path.join(__dirname, '..', 'lib', 'main.js')
const options: cp.ExecSyncOptions = {
env: process.env
}
const output = cp.execSync(`node ${ip}`, options).toString()
expect(output).toContain('::set-output name=sha::6e8dcc')
})