| OLD | NEW |
| 1 // Karma configuration | 1 // Karma configuration |
| 2 // Generated on Mon Apr 20 2015 06:33:20 GMT-0700 (PDT) | 2 // Generated on Mon Apr 20 2015 06:33:20 GMT-0700 (PDT) |
| 3 | 3 |
| 4 module.exports = function(config) { | 4 module.exports = function(config) { |
| 5 var harmony_flags = '--js-flags="' + [ | 5 var harmony_flags = '--js-flags="' + [ |
| 6 '--harmony', | 6 '--harmony', |
| 7 ].join(' ') + '"'; | 7 ].join(' ') + '"'; |
| 8 | 8 |
| 9 var configuration = { | 9 var configuration = { |
| 10 | 10 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 'test/codegen/expect/async_helper/async_helper.js', | 23 'test/codegen/expect/async_helper/async_helper.js', |
| 24 'test/codegen/expect/dom/dom.js', | 24 'test/codegen/expect/dom/dom.js', |
| 25 'test/codegen/expect/expect/expect.js', | 25 'test/codegen/expect/expect/expect.js', |
| 26 'test/codegen/expect/matcher/matcher.js', | 26 'test/codegen/expect/matcher/matcher.js', |
| 27 'test/codegen/expect/matcher/src/*.js', | 27 'test/codegen/expect/matcher/src/*.js', |
| 28 'test/codegen/expect/unittest/unittest.js', | 28 'test/codegen/expect/unittest/unittest.js', |
| 29 'test/codegen/expect/syncstar_syntax.js', | 29 'test/codegen/expect/syncstar_syntax.js', |
| 30 'test/codegen/expect/language-all.js', | 30 'test/codegen/expect/language-all.js', |
| 31 'test/codegen/expect/language/sub/sub.js', | 31 'test/codegen/expect/language/sub/sub.js', |
| 32 'test/codegen/expect/language/*.lib', | 32 'test/codegen/expect/language/*.lib', |
| 33 'test/codegen/expect/lib-typed_data-all.js', |
| 33 'test/browser/*.js', | 34 'test/browser/*.js', |
| 34 'test-main.js', | 35 'test-main.js', |
| 35 ], | 36 ], |
| 36 | 37 |
| 37 // list of files to exclude | 38 // list of files to exclude |
| 38 exclude: [ | 39 exclude: [ |
| 39 ], | 40 ], |
| 40 | 41 |
| 41 // preprocess matching files before serving them to the browser | 42 // preprocess matching files before serving them to the browser |
| 42 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces
sor | 43 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces
sor |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 configuration.browsers = ['chrome_canary_travis', 'Electron']; | 97 configuration.browsers = ['chrome_canary_travis', 'Electron']; |
| 97 configuration.autoWatch = false; | 98 configuration.autoWatch = false; |
| 98 // Enable this for more logging on Travis. It is too much for Travis to | 99 // Enable this for more logging on Travis. It is too much for Travis to |
| 99 // automatically display, but still results in a downloadable raw log. | 100 // automatically display, but still results in a downloadable raw log. |
| 100 // configuration.logLevel = config.LOG_DEBUG; | 101 // configuration.logLevel = config.LOG_DEBUG; |
| 101 configuration.client.captureConsole = true; | 102 configuration.client.captureConsole = true; |
| 102 } | 103 } |
| 103 | 104 |
| 104 config.set(configuration); | 105 config.set(configuration); |
| 105 }; | 106 }; |
| OLD | NEW |