Skip to content

Commit c1231df

Browse files
committed
Debug 2
1 parent 0ee9e83 commit c1231df

File tree

4 files changed

+16
-18
lines changed

4 files changed

+16
-18
lines changed

.travis.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ branches:
2222

2323
jobs:
2424
include:
25-
- env: "MODE=lint"
26-
- env: "MODE=aot"
27-
- env: "MODE=payload"
28-
- env: "MODE=prerender"
25+
# - env: "MODE=lint"
26+
# - env: "MODE=aot"
27+
# - env: "MODE=payload"
28+
# - env: "MODE=prerender"
2929
# Closure Compiler CI check is temporarily disabled until a new version of
3030
# the tool is released with https://github.com/google/closure-compiler/pull/2600
3131
# - env: "MODE=closure-compiler"
3232
- env: "MODE=e2e"
33-
# - env: "MODE=test-browserstack-1"
34-
- env: "MODE=test-browserstack-2"
35-
- env: "MODE=test-travis-1"
36-
- env: "DEPLOY_MODE=build-artifacts"
37-
- env: "DEPLOY_MODE=docs-content"
38-
- env: "DEPLOY_MODE=screenshot-tool"
39-
- env: "DEPLOY_MODE=dashboard"
33+
- env: "MODE=test-browserstack-1"
34+
# - env: "MODE=test-browserstack-2"
35+
# - env: "MODE=test-travis-1"
36+
# - env: "DEPLOY_MODE=build-artifacts"
37+
# - env: "DEPLOY_MODE=docs-content"
38+
# - env: "DEPLOY_MODE=screenshot-tool"
39+
# - env: "DEPLOY_MODE=dashboard"
4040
env:
4141
global:
4242
- LOGS_DIR=/tmp/angular-material2-build/logs

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@
100100
"karma-coverage": "^1.1.1",
101101
"karma-firefox-launcher": "^1.0.1",
102102
"karma-jasmine": "^1.1.0",
103-
"karma-sauce-launcher": "^1.2.0",
104103
"karma-sourcemap-loader": "^0.3.7",
105104
"madge": "^2.2.0",
106105
"magic-string": "^0.22.4",

test/browser-providers.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,6 @@ exports.platformMap = {
4040
'travis': buildConfiguration('TC'),
4141
};
4242

43-
/** Ensures that the Travis access keys work properly. */
44-
if (process.env.TRAVIS) {
45-
process.env.BROWSER_STACK_ACCESS_KEY = decodeToken(process.env.BROWSER_STACK_ACCESS_KEY);
46-
}
47-
4843
/** Build a list of configuration for the specified platform. */
4944
function buildConfiguration(platform) {
5045
const platformConfig = {};
@@ -76,3 +71,8 @@ function buildConfiguration(platform) {
7671
function decodeToken(token) {
7772
return (token || '').split('').reverse().join('');
7873
}
74+
75+
/** Ensures that the Travis access keys work properly. */
76+
if (process.env.TRAVIS) {
77+
process.env.BROWSER_STACK_ACCESS_KEY = decodeToken(process.env.BROWSER_STACK_ACCESS_KEY);
78+
}

test/karma.conf.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ module.exports = (config) => {
99
plugins: [
1010
require('karma-jasmine'),
1111
require('karma-browserstack-launcher'),
12-
require('karma-sauce-launcher'),
1312
require('karma-chrome-launcher'),
1413
require('karma-firefox-launcher'),
1514
require('karma-sourcemap-loader'),

0 commit comments

Comments
 (0)