Merge branch 'main' into 3.99

This commit is contained in:
Steve Gravrock
2021-08-17 17:08:34 -07:00
7 changed files with 418 additions and 184 deletions
+6
View File
@@ -4,4 +4,10 @@
env.pending('Environment does not support promises');
}
};
env.requireNoPromises = function() {
if (typeof Promise === 'function') {
env.pending('Environment supports promises');
}
};
})(jasmine.getEnv());