Merge pull request #12761 from Snuffleupagus/unittest-no-components

Stop running `gulp components` as part of the unit-tests
This commit is contained in:
Tim van der Meij 2020-12-19 22:33:46 +01:00 committed by GitHub
commit c3730c177a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1583,7 +1583,7 @@ gulp.task(
gulp.task(
"unittest",
gulp.series("testing-pre", "generic", "components", function () {
gulp.series("testing-pre", "generic", function () {
return createTestSource("unit");
})
);