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

Side by Side Diff: bower_components/chai/karma.conf.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, 11 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 unified diff | Download patch
« no previous file with comments | « bower_components/chai/component.json ('k') | bower_components/chai/karma.sauce.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 module.exports = function(config) {
2 config.set({
3 frameworks: [ 'mocha' ]
4 , files: [
5 'build/build.js'
6 , 'test/bootstrap/karma.js'
7 , 'test/*.js'
8 ]
9 , reporters: [ 'progress' ]
10 , colors: true
11 , logLevel: config.LOG_INFO
12 , autoWatch: false
13 , browsers: [ 'PhantomJS' ]
14 , browserDisconnectTimeout: 10000
15 , browserDisconnectTolerance: 2
16 , browserNoActivityTimeout: 20000
17 , singleRun: true
18 });
19
20 switch (process.env.CHAI_TEST_ENV) {
21 case 'sauce':
22 require('./karma.sauce')(config);
23 break;
24 default:
25 // ...
26 break;
27 };
28 };
OLDNEW
« no previous file with comments | « bower_components/chai/component.json ('k') | bower_components/chai/karma.sauce.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698