Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 8c8b931

Browse files
chore(jenkins): update integration version testing to use Chrome browser
1 parent 25aeb0d commit 8c8b931

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

config/karma-ci.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = function(config) {
1313
// Only launch one browser at a time since doing multiple can cause disconnects/issues
1414
concurrency: 1,
1515

16-
browsers: ['Firefox'],
16+
browsers: ['Chrome'],
1717

1818
client: {
1919
// Do not clear the context as this can cause reload failures with Jasmine

scripts/test-versions.sh

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# The purpose of this file is to download
22
# assigned AngularJS source files and test
3-
# them against this build of AngularMaterial.
3+
# them against this build of AngularJS Material.
44

55
# This works by pulling in all of the tags
6-
# from angular.js, finding the highest version
6+
# from AngularJS, finding the highest version
77
# numbers for each branch (e.g. 1.3 => 1.3.X where
88
# X is the highest patch release). For each
99
# detected version it will then copy over each
@@ -22,7 +22,7 @@
2222

2323
# Available Options are: 1.X, 1.X.X, 1.X.X-(beta|rc).X or snapshot
2424
VERSIONS=(1.3 1.4 1.5 1.6 snapshot)
25-
BROWSERS="Firefox"
25+
BROWSERS="Chrome"
2626

2727
#
2828
# DO NOT EDIT PAST THIS LINE
@@ -38,7 +38,10 @@ fi;
3838

3939
for VERSION in "${VERSIONS[@]}"; do
4040

41-
echo "\n\n--- Testing AngularMaterial against AngularJS (${VERSION}) ---\n"
41+
echo "######################################################################"
42+
echo "####### Jenkins Build #######"
43+
echo "####### Testing AngularJS Material + AngularJS (${VERSION}) #######"
44+
echo "######################################################################"
4245

4346
./scripts/fetch-angular-version.sh $VERSION
4447

@@ -47,7 +50,9 @@ for VERSION in "${VERSIONS[@]}"; do
4750
node ./node_modules/gulp/bin/gulp.js karma --config=config/karma-ci.conf.js --reporters='dots' --browsers=$BROWSERS
4851
LAST_EXIT_CODE=$?
4952

50-
echo "\n\n--- Finished Testing AngularMaterial against AngularJS (${VERSION}) ---"
53+
echo "######################################################################"
54+
echo "####### Finished: ngM1 + AngularJS (${VERSION}) #######"
55+
echo "######################################################################"
5156

5257
if [ $LAST_EXIT_CODE != "0" ]; then
5358
echo "STATUS: FAILED"

0 commit comments

Comments
 (0)