UNPKG

268 BJavaScriptView Raw
1#!/usr/bin/env node
2'use strict';
3const debug = require('debug')('ava');
4const importLocal = require('import-local');
5
6// Prefer the local installation of AVA
7if (importLocal(__filename)) {
8 debug('Using local install of AVA');
9} else {
10 require('./lib/cli').run();
11}