FreeAllMedia/mrt

View on GitHub
tasks/test-watch.js

Summary

Maintainability
A
0 mins
Test Coverage
import gulp from "gulp";
import paths from "../paths.json";

gulp.task("test-watch", ["suppress-errors", "test-es6"], () => {
    gulp.watch([
        paths.source.all
    ], ["test-es6"]);
});