drive-to-tape

Convert drive-js tests to tape tests

Usage no npm install needed!

<script type="module">
  import driveToTape from 'https://cdn.skypack.dev/drive-to-tape';
</script>

README

drive to tape

Turns drive tests into tape tests.

On the command line:

drive-to-tape --help

Or require it in a js module:


var convert = require('drive-to-tape')
  , fs = require('fs')

fs.createReadStream('./path/to/drive-test')
  .pipe(convert())
  .pipe(fs.createWriteStream('./path/to/tape-test'))