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

Commit b335976

Browse files
committed
chore(travis): don't call grunt:package for unit tests
1 parent 012c431 commit b335976

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

karma-shared.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ module.exports = function(config, specificOptions) {
3737
'SL_Chrome': {
3838
base: 'SauceLabs',
3939
browserName: 'chrome',
40-
version: '48'
40+
version: '47'
4141
},
4242
'SL_Firefox': {
4343
base: 'SauceLabs',
4444
browserName: 'firefox',
45-
version: '44'
45+
version: '43'
4646
},
4747
'SL_Safari_8': {
4848
base: 'SauceLabs',

scripts/travis/before_build.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ fi
1212
npm install -g grunt-cli
1313

1414
if [ $JOB != "ci-checks" ]; then
15-
grunt package
15+
if [ $JOB != "unit" ]; then
16+
# unit tests test against unminified code
17+
grunt package
18+
fi
1619
echo "wait_for_browser_provider"
1720
./scripts/travis/wait_for_browser_provider.sh
1821
fi

0 commit comments

Comments
 (0)