1.0.1 • Published 5 years ago

@ianwalter/execa-helper v1.0.1

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
5 years ago

@ianwalter/execa-helper

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

npm page

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