]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Run tests in series to avoid timeouts (#7392)
authorJukka Kurkela <jukka.kurkela@gmail.com>
Thu, 21 May 2020 20:35:03 +0000 (23:35 +0300)
committerGitHub <noreply@github.com>
Thu, 21 May 2020 20:35:03 +0000 (16:35 -0400)
gulpfile.js

index 5454bc4b7769bd3066dff8b05558b549e959f10c..5c4270a0ad4401e440970c0a8f0b0eaf7fe01150 100644 (file)
@@ -31,7 +31,7 @@ gulp.task('lint-js', lintJsTask);
 gulp.task('lint', gulp.parallel('lint-html', 'lint-js'));
 gulp.task('tsc', typescriptTask);
 gulp.task('unittest', unittestTask);
-gulp.task('test', gulp.parallel('lint', 'tsc', 'unittest'));
+gulp.task('test', gulp.series('lint', 'tsc', 'unittest'));
 gulp.task('library-size', librarySizeTask);
 gulp.task('module-sizes', moduleSizesTask);
 gulp.task('size', gulp.parallel('library-size', 'module-sizes'));