We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dafa758 commit 29744f8Copy full SHA for 29744f8
scripts/node-unit-tests.ts
@@ -162,7 +162,11 @@ function runTests(): void {
162
const versionConfig = SKIP_TEST_PACKAGES[CURRENT_NODE_VERSION as NodeVersions];
163
if (versionConfig) {
164
versionConfig.ignoredPackages.forEach(dep => ignores.add(dep));
165
- installLegacyDeps(versionConfig.legacyDeps);
+
166
+ if (versionConfig.legacyDeps.length > 0) {
167
+ installLegacyDeps(versionConfig.legacyDeps);
168
+ }
169
170
if (versionConfig.shouldES6Utils) {
171
es6ifyTestTSConfig('utils');
172
}
0 commit comments