diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2022-06-28 12:39:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-28 12:39:01 +0200 |
commit | fae5fee8b435cc20352d28b0a384b9784b1ad9ed (patch) | |
tree | 86ae9425c469a476c25ce62399297d35472dbc2c /test/unit/deferred.js | |
parent | 52f452b2e8881e5ec5c9e880e277c8ecf633e8dc (diff) | |
download | jquery-fae5fee8b435cc20352d28b0a384b9784b1ad9ed.tar.gz jquery-fae5fee8b435cc20352d28b0a384b9784b1ad9ed.zip |
Tests: Exclude tests based on compilation flags, not API presence
Introduces a new test API, `includesModule`. The method returns whether
a particular module like "ajax" or "deprecated" is included in the current
jQuery build; it handles the slim build as well. The util was created so that
we don't treat presence of particular APIs to decide whether to run a test as
then if we accidentally remove an API, the tests would still not fail.
Fixes gh-5069
Closes gh-5046
Diffstat (limited to 'test/unit/deferred.js')
-rw-r--r-- | test/unit/deferred.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/deferred.js b/test/unit/deferred.js index 2063ac82c..535dc0115 100644 --- a/test/unit/deferred.js +++ b/test/unit/deferred.js @@ -4,7 +4,7 @@ QUnit.module( "deferred", { ( function() { -if ( !jQuery.Deferred ) { +if ( !includesModule( "deferred" ) ) { return; } |