execa-helper

An AVA helper that makes it easier to test CLIs using Execa

OTHER License

Downloads
8
Stars
1

@ianwalter/execa-helper

An AVA helper that makes it easier to test CLIs using Execa

Installation

yarn add @ianwalter/execa-helper --dev

Usage

import test from 'ava'
import execaHelper from '@ianwalter/execa-helper'

const withCli = execaHelper('./cli.js')

test('my cli runs without errors', withCli, async (t, cli) => {
  const { stdout } = await cli('run', '--with', 'stuff')
  t.snapshot(stdout)
})

API

License

Apache 2.0 with Commons Clause - See LICENSE

Β 

Created by Ian Walter