diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2020-01-27 18:54:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 18:54:47 +0100 |
commit | d525ae3416417186330bb3d14133df84509803a0 (patch) | |
tree | 7f6920f6228a5d8934f539abba28f8f8ed756191 /src | |
parent | 7a3cf9c03cc34d5493383852f94d96fe4a3486ef (diff) | |
download | jquery-d525ae3416417186330bb3d14133df84509803a0.tar.gz jquery-d525ae3416417186330bb3d14133df84509803a0.zip |
Build:Tests: Fix custom build tests, verify on Travis; name Travis jobs
This commit fixes unit tests for the following builds:
1. The no-deprecated build: `custom:-deprecated`
2. The current slim build: `custom:-ajax,-effects`
3. The 4.0 (#4553) slim build: `custom:-ajax,-callbacks,-deferred,-effects`
It also adds separate Travis jobs for the no-deprecated & slim builds.
Apart from that, add intuitive names to Travis jobs. Otherwise it's hard to see
at a glance that a particular job is running on Firefox ESR, for example.
Ref gh-4577
Ref gh-4596
Closes gh-4600
Diffstat (limited to 'src')
-rw-r--r-- | src/ajax.js | 2 | ||||
-rw-r--r-- | src/core/parseXML.js (renamed from src/ajax/parseXML.js) | 0 | ||||
-rw-r--r-- | src/jquery.js | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/ajax.js b/src/ajax.js index b1f160840..11eda0da0 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -8,7 +8,7 @@ define( [ "./ajax/var/rquery", "./core/init", - "./ajax/parseXML", + "./core/parseXML", "./event/trigger", "./deferred", "./serialize" // jQuery.param diff --git a/src/ajax/parseXML.js b/src/core/parseXML.js index acf7ab259..acf7ab259 100644 --- a/src/ajax/parseXML.js +++ b/src/core/parseXML.js diff --git a/src/jquery.js b/src/jquery.js index 61c4b2f0d..0c144c194 100644 --- a/src/jquery.js +++ b/src/jquery.js @@ -23,6 +23,8 @@ define( [ "./ajax/script", "./ajax/jsonp", "./ajax/load", + "./core/parseXML", + "./core/parseHTML", "./effects", "./effects/animatedSelector", "./offset", |