forked from ampproject/amphtml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-organize karma config files. (ampproject#6831)
* Reorganize karma config files. * Remove unused code. * Simplify logic. * Some more improvements. * Avoid using a karma config file. Put everything into a config object instead. This completely solves the hard-to-explain config overridden problem. * Document hardcoded log level constants.
- Loading branch information
Showing
4 changed files
with
186 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
/** | ||
* Copyright 2015 The AMP HTML Authors. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS-IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* @param {!Object} config | ||
*/ | ||
module.exports = { | ||
frameworks: [ | ||
'fixture', | ||
'browserify', | ||
'mocha', | ||
'chai-as-promised', | ||
'sinon-chai', | ||
'chai', | ||
], | ||
|
||
preprocessors: { | ||
'test/fixtures/*.html': ['html2js'], | ||
'src/**/*.js': ['browserify'], | ||
'test/**/*.js': ['browserify'], | ||
'ads/**/test/test-*.js': ['browserify'], | ||
'extensions/**/test/**/*.js': ['browserify'], | ||
'testing/**/*.js': ['browserify'], | ||
}, | ||
|
||
browserify: { | ||
watch: true, | ||
debug: true, | ||
transform: ['babelify'], | ||
bundleDelay: 900, | ||
}, | ||
|
||
reporters: [process.env.TRAVIS ? 'dots' : 'progress'], | ||
|
||
port: 9876, | ||
|
||
colors: true, | ||
|
||
proxies: { | ||
'/ads/': '/base/ads/', | ||
'/dist/': '/base/dist/', | ||
'/dist.3p/': '/base/dist.3p/', | ||
'/examples/': '/base/examples/', | ||
'/extensions/': '/base/extensions/', | ||
'/src/': '/base/src/', | ||
'/test/': '/base/test/', | ||
}, | ||
|
||
// Can't import Karma constants config.LOG_ERROR & config.LOG_WARN, | ||
// so we hard code the strings here. Hopefully they'll never change. | ||
logLevel: process.env.TRAVIS ? 'ERROR' : 'WARN', | ||
|
||
autoWatch: true, | ||
|
||
browsers: [ | ||
process.env.TRAVIS ? 'Chrome_travis_ci' : 'Chrome_no_extensions', | ||
], | ||
|
||
customLaunchers: { | ||
/*eslint "google-camelcase/google-camelcase": 0*/ | ||
Chrome_travis_ci: { | ||
base: 'Chrome', | ||
flags: ['--no-sandbox', '--disable-extensions'], | ||
}, | ||
Chrome_no_extensions: { | ||
base: 'Chrome', | ||
// Dramatically speeds up iframe creation time. | ||
flags: ['--disable-extensions'], | ||
}, | ||
// SauceLabs configurations. | ||
// New configurations can be created here: | ||
// https://wiki.saucelabs.com/display/DOCS/Platform+Configurator#/ | ||
SL_Chrome_android: { | ||
base: 'SauceLabs', | ||
browserName: 'android', | ||
}, | ||
SL_Chrome_latest: { | ||
base: 'SauceLabs', | ||
browserName: 'chrome', | ||
}, | ||
SL_Chrome_45: { | ||
base: 'SauceLabs', | ||
browserName: 'chrome', | ||
version: '45', | ||
}, | ||
SL_iOS_8_4: { | ||
base: 'SauceLabs', | ||
browserName: 'iphone', | ||
version: '8.4', | ||
}, | ||
SL_iOS_9_1: { | ||
base: 'SauceLabs', | ||
browserName: 'iphone', | ||
version: '9.1', | ||
}, | ||
SL_iOS_10_0: { | ||
base: 'SauceLabs', | ||
browserName: 'iphone', | ||
version: '10.0', | ||
}, | ||
SL_Firefox_latest: { | ||
base: 'SauceLabs', | ||
browserName: 'firefox', | ||
}, | ||
SL_IE_11: { | ||
base: 'SauceLabs', | ||
browserName: 'internet explorer', | ||
version: 11, | ||
}, | ||
SL_Edge_latest: { | ||
base: 'SauceLabs', | ||
browserName: 'microsoftedge', | ||
}, | ||
SL_Safari_9: { | ||
base: 'SauceLabs', | ||
browserName: 'safari', | ||
version: 9, | ||
}, | ||
SL_Safari_8: { | ||
base: 'SauceLabs', | ||
browserName: 'safari', | ||
version: 8, | ||
}, | ||
}, | ||
|
||
sauceLabs: { | ||
testName: 'AMP HTML on Sauce', | ||
tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER, | ||
startConnect: false, | ||
connectOptions: { | ||
port: 5757, | ||
logfile: 'sauce_connect.log', | ||
}, | ||
}, | ||
|
||
client: { | ||
mocha: { | ||
reporter: 'html', | ||
// Longer timeout on Travis; fail quickly at local. | ||
timeout: process.env.TRAVIS ? 10000 : 2000, | ||
}, | ||
captureConsole: false, | ||
}, | ||
|
||
singleRun: true, | ||
browserDisconnectTimeout: 10000, | ||
browserDisconnectTolerance: 2, | ||
browserNoActivityTimeout: 4 * 60 * 1000, | ||
captureTimeout: 4 * 60 * 1000, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.