You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Vestride_Shuffle/gulp/tasks/test.js

10 lines
196 B
JavaScript

const gulp = require('gulp');
const shell = require('gulp-shell');
module.exports = function test() {
return gulp.src('package.json', {
read: false,
})
.pipe(shell(['npx jest']));
};