From 175793b1cde12e6143e430e714106cf784421744 Mon Sep 17 00:00:00 2001
From: Jonas Jenwald <jonas.jenwald@gmail.com>
Date: Sat, 19 Dec 2020 22:19:07 +0100
Subject: [PATCH] Stop running `gulp components` as part of the unit-tests

The `gulp components` task is only necessary when running the reference-tests, since they use the `SimpleLinkService` during the `annotationLayer` sub-tests.
However, unit-tests don't actually use any part of the `gulp components` build, and we can thus reduce the overall runtime of the standalone unit-tests by not building unnecessary files.
---
 gulpfile.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gulpfile.js b/gulpfile.js
index fcc189e9c..7d9ea3eeb 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -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");
   })
 );