UNPKG

314 BJavaScriptView Raw
1#!/usr/bin/env node
2
3const debug = require('debug')('mocha-chrome');
4const importLocal = require('import-local');
5
6// Prefer the local installation of AVA
7if (importLocal(__filename)) {
8 debug('Using local install of mocha-chrome');
9} else {
10 // eslint-disable-next-line global-require
11 require('./lib/cli');
12}