UNPKG

ava

Version:

Testing can be a drag. AVA helps you get it done.

12 lines (10 loc) 268 B
#!/usr/bin/env node 'use strict'; const debug = require('debug')('ava'); const importLocal = require('import-local'); // Prefer the local installation of AVA if (importLocal(__filename)) { debug('Using local install of AVA'); } else { require('./lib/cli').run(); }