Explorar o código

Fixed task paths, excluded _utils/ dirs from testing under node.

Szymon Kupś %!s(int64=9) %!d(string=hai) anos
pai
achega
fdf8c50d1b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      dev/tasks/test/tasks.js

+ 1 - 1
dev/tasks/test/tasks.js

@@ -35,7 +35,7 @@ module.exports = () => {
 		},
 
 		testInNode() {
-			return gulp.src( 'dist/cjs/tests/**/*.js' )
+			return gulp.src( [ 'build/cjs/tests/**/*.js', '!**/_utils/**/*.js' ] )
 				.pipe( tasks.skipManual() )
 				.pipe( tasks.skipIgnored() )
 				.pipe( mocha() );