Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: polymer_0.5.0/bower_components/web-animations-js/test/karma-config-ci.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: polymer_0.5.0/bower_components/web-animations-js/test/karma-config-ci.js
diff --git a/polymer_0.5.0/bower_components/web-animations-js/test/karma-config-ci.js b/polymer_0.5.0/bower_components/web-animations-js/test/karma-config-ci.js
new file mode 100644
index 0000000000000000000000000000000000000000..c41203551dd8a24c7bfe0374451931a3e293cbbb
--- /dev/null
+++ b/polymer_0.5.0/bower_components/web-animations-js/test/karma-config-ci.js
@@ -0,0 +1,50 @@
+module.exports = function(config) {
+ var customLaunchers = {
+ sl_chrome: {
+ base: 'SauceLabs',
+ browserName: 'chrome',
+ platform: 'Windows 7'
+ },
+ sl_firefox: {
+ base: 'SauceLabs',
+ browserName: 'firefox',
+ version: '27'
+ },
+ sl_ios_safari: {
+ base: 'SauceLabs',
+ browserName: 'iphone',
+ platform: 'OS X 10.9',
+ version: '7.1'
+ },
+ sl_ie_11: {
+ base: 'SauceLabs',
+ browserName: 'internet explorer',
+ platform: 'Windows 8.1',
+ version: '11'
+ }
+ };
+
+ config.set({
+ frameworks: ['mocha', 'chai'],
+ plugins: [
+ 'karma-mocha',
+ 'karma-chai',
+ 'karma-sauce-launcher',
+ ],
+ sauceLabs: {
+ testName: 'Web App Unit Tests'
+ },
+ customLaunchers: customLaunchers,
+ browsers: Object.keys(customLaunchers),
+ basePath: '..',
+ files: [
+ // Populated in `grunt test` task.
+ ],
+ singleRun: true,
+ port: 9876,
+ reporters: ['dots', 'saucelabs'],
+ colors: true,
+ autoWatch: false,
+ captureTimeout: 300000,
+ });
+};

Powered by Google App Engine
This is Rietveld 408576698