UNPKG

lasso

Version:

Lasso.js is a build tool and runtime library for building and bundling all of the resources needed by a web application

9 lines (7 loc) 250 B
const env = require('../env'); const spawn = require('child_process').spawnSync; if (env.compatible) { spawn('npm', ['run', 'test-coverage'], { stdio: 'inherit' }); } else { spawn('npm', ['run', 'test-no-coverage'], { stdio: 'inherit' }); }