Skip to content

Commit 244ce08

Browse files
committed
tests(jQuery): test on both oldest & latest supported jQuery version
1 parent e01419e commit 244ce08

10 files changed

+42
-10
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ env:
1919
- JOB=unit BROWSER_PROVIDER=saucelabs
2020
- JOB=docs-e2e BROWSER_PROVIDER=saucelabs
2121
- JOB=e2e TEST_TARGET=jqlite BROWSER_PROVIDER=saucelabs
22+
- JOB=e2e TEST_TARGET=jquery-old BROWSER_PROVIDER=saucelabs
2223
- JOB=e2e TEST_TARGET=jquery BROWSER_PROVIDER=saucelabs
2324
global:
2425
- CXX=g++-4.8 # node 4 likes the G++ v4.8 compiler

Gruntfile.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ module.exports = function(grunt) {
7979
tests: {
8080
jqlite: 'karma-jqlite.conf.js',
8181
jquery: 'karma-jquery.conf.js',
82+
'jquery-old': 'karma-jquery-old.conf.js',
8283
docs: 'karma-docs.conf.js',
8384
modules: 'karma-modules.conf.js'
8485
},
@@ -87,6 +88,7 @@ module.exports = function(grunt) {
8788
autotest: {
8889
jqlite: 'karma-jqlite.conf.js',
8990
jquery: 'karma-jquery.conf.js',
91+
'jquery-old': 'karma-jquery-old.conf.js',
9092
modules: 'karma-modules.conf.js',
9193
docs: 'karma-docs.conf.js'
9294
},
@@ -344,10 +346,11 @@ module.exports = function(grunt) {
344346
//alias tasks
345347
grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package', 'test:unit', 'test:promises-aplus', 'tests:docs', 'test:protractor']);
346348
grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']);
347-
grunt.registerTask('test:jquery', 'Run the jQuery unit tests with Karma', ['tests:jquery']);
349+
grunt.registerTask('test:jquery', 'Run the jQuery (latest) unit tests with Karma', ['tests:jquery']);
350+
grunt.registerTask('test:jquery-old', 'Run the jQuery 2.1 unit tests with Karma', ['tests:jquery-old']);
348351
grunt.registerTask('test:modules', 'Run the Karma module tests with Karma', ['build', 'tests:modules']);
349352
grunt.registerTask('test:docs', 'Run the doc-page tests with Karma', ['package', 'tests:docs']);
350-
grunt.registerTask('test:unit', 'Run unit, jQuery and Karma module tests with Karma', ['test:jqlite', 'test:jquery', 'test:modules']);
353+
grunt.registerTask('test:unit', 'Run unit, jQuery and Karma module tests with Karma', ['test:jqlite', 'test:jquery', 'test:jquery-old', 'test:modules']);
351354
grunt.registerTask('test:protractor', 'Run the end to end tests with Protractor and keep a test server running in the background', ['webdriver', 'connect:testserver', 'protractor:normal']);
352355
grunt.registerTask('test:travis-protractor', 'Run the end to end tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor:travis']);
353356
grunt.registerTask('test:ci-protractor', 'Run the end to end tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor:jenkins']);

angularFiles.js

+9
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,15 @@ var angularFiles = {
226226
'@angularTest'
227227
],
228228

229+
'karmaJqueryOld': [
230+
'bower_components/jquery-old/dist/jquery.js',
231+
'test/jquery_alias.js',
232+
'@angularSrc',
233+
'@angularSrcModules',
234+
'@angularScenario',
235+
'@angularTest'
236+
],
237+
229238
'karmaJqueryExclude': [
230239
'src/angular-bootstrap.js',
231240
'src/ngScenario/angular-bootstrap.js',

bower.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"name": "AngularJS",
33
"license": "MIT",
44
"devDependencies": {
5-
"jquery": "2.1.1",
5+
"jquery": "2.2.1",
6+
"jquery-old": "jquery#2.1.4",
67
"closure-compiler": "https://dl.google.com/closure-compiler/compiler-20140814.zip",
78
"ng-closure-runner": "https://raw.github.com/angular/ng-closure-runner/v0.2.3/assets/ng-closure-runner.zip"
89
}

docs/bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "AngularJS-docs-app",
33
"dependencies": {
4-
"jquery": "2.1.1",
4+
"jquery": "2.2.1",
55
"lunr.js": "0.5.12",
66
"open-sans-fontface": "1.0.4",
77
"google-code-prettify": "1.0.1",

docs/content/tutorial/step_07.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ We are using [Bower][bower] to install client-side dependencies. This step upda
3535
"dependencies": {
3636
"angular": "1.4.x",
3737
"angular-mocks": "1.4.x",
38-
"jquery": "~2.1.1",
38+
"jquery": "~2.2.1",
3939
"bootstrap": "~3.1.1",
4040
"angular-route": "1.4.x"
4141
}

docs/content/tutorial/step_11.ngdoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ We are using [Bower][bower] to install client side dependencies. This step upda
3434
"dependencies": {
3535
"angular": "1.4.x",
3636
"angular-mocks": "1.4.x",
37-
"jquery": "~2.1.1",
37+
"jquery": "~2.2.1",
3838
"bootstrap": "~3.1.1",
3939
"angular-route": "1.4.x",
4040
"angular-resource": "1.4.x"

docs/content/tutorial/step_12.ngdoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ We are using [Bower][bower] to install client side dependencies. This step upda
3838
"dependencies": {
3939
"angular": "1.4.x",
4040
"angular-mocks": "1.4.x",
41-
"jquery": "~2.1.1",
41+
"jquery": "~2.2.1",
4242
"bootstrap": "~3.1.1",
4343
"angular-route": "1.4.x",
4444
"angular-resource": "1.4.x",
@@ -49,7 +49,7 @@ We are using [Bower][bower] to install client side dependencies. This step upda
4949

5050
* `"angular-animate": "1.4.x"` tells bower to install a version of the
5151
angular-animate component that is compatible with version 1.4.x.
52-
* `"jquery": "~2.1.1"` tells bower to install the 2.1.1 version of jQuery. Note that this is not an
52+
* `"jquery": "~2.2.1"` tells bower to install the 2.2.1 version of jQuery. Note that this is not an
5353
Angular library, it is the standard jQuery library. We can use bower to install a wide range of 3rd
5454
party libraries.
5555

karma-jquery-old.conf.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
'use strict';
2+
3+
var angularFiles = require('./angularFiles');
4+
var sharedConfig = require('./karma-shared.conf');
5+
6+
module.exports = function(config) {
7+
sharedConfig(config, {testName: 'AngularJS: jQuery', logFile: 'karma-jquery.log'});
8+
9+
config.set({
10+
files: angularFiles.mergeFilesFor('karmaJqueryOld'),
11+
exclude: angularFiles.mergeFilesFor('karmaJqueryExclude'),
12+
13+
junitReporter: {
14+
outputFile: 'test_out/jquery.xml',
15+
suite: 'jQuery'
16+
}
17+
});
18+
};

scripts/travis/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ elif [ $JOB = "unit" ]; then
2020
elif [ $JOB = "docs-e2e" ]; then
2121
grunt test:travis-protractor --specs "docs/app/e2e/**/*.scenario.js"
2222
elif [ $JOB = "e2e" ]; then
23-
if [ $TEST_TARGET = "jquery" ]; then
23+
if [ $TEST_TARGET = "jquery" -o $TEST_TARGET = "jquery-old" ]; then
2424
export USE_JQUERY=1
2525
fi
2626

2727
export TARGET_SPECS="build/docs/ptore2e/**/default_test.js"
28-
if [ $TEST_TARGET = "jquery" ]; then
28+
if [ $TEST_TARGET = "jquery" -o $TEST_TARGET = "jquery-old" ]; then
2929
TARGET_SPECS="build/docs/ptore2e/**/jquery_test.js"
3030
fi
3131

0 commit comments

Comments
 (0)