We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1798507 commit ad09a27Copy full SHA for ad09a27
1 file changed
gulp-tasks/tests.js
@@ -9,22 +9,6 @@ var buildFolder = path.join('dist', process.platform + '-' + process.arch);
9
10
module.exports = function(gulp) {
11
12
- function createMocha() {
13
- return new mochaa({
14
- recursive: true,
15
- compilers: 'js:babel-core/register',
16
- env: {
17
- NODE_PATH: '.'
18
- },
19
- grep: yargs.argv.grep,
20
- g: yargs.argv.g,
21
- reporter: yargs.argv.reporter,
22
- istanbul: {
23
- report: yargs.argv.report || 'lcov'
24
- }
25
- });
26
27
-
28
gulp.task('unit-test-1by1', function() {
29
return globby('test/unit/**/*.js', {root: '.'}).then(function(files) {
30
files.reduce((promises, file) => {
0 commit comments