| 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 configuration = { | 5 var configuration = { |
| 6 | 6 |
| 7 // base path that will be used to resolve all patterns (eg. files, exclude) | 7 // base path that will be used to resolve all patterns (eg. files, exclude) |
| 8 basePath: '', | 8 basePath: '', |
| 9 | 9 |
| 10 // frameworks to use | 10 // frameworks to use |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 'test/codegen/expect/path/path.js', | 22 'test/codegen/expect/path/path.js', |
| 23 'test/codegen/expect/stack_trace/stack_trace.js', | 23 'test/codegen/expect/stack_trace/stack_trace.js', |
| 24 'test/codegen/expect/js/js.js', | 24 'test/codegen/expect/js/js.js', |
| 25 'test/codegen/expect/matcher/matcher.js', | 25 'test/codegen/expect/matcher/matcher.js', |
| 26 'test/codegen/expect/unittest/unittest.js', | 26 'test/codegen/expect/unittest/unittest.js', |
| 27 'test/codegen/expect/syncstar_syntax.js', | 27 'test/codegen/expect/syncstar_syntax.js', |
| 28 'test/codegen/expect/language/**.js', | 28 'test/codegen/expect/language/**.js', |
| 29 'test/codegen/expect/language/sub/sub.js', | 29 'test/codegen/expect/language/sub/sub.js', |
| 30 'test/codegen/expect/language/*.lib', | 30 'test/codegen/expect/language/*.lib', |
| 31 'test/codegen/expect/corelib/**.js', | 31 'test/codegen/expect/corelib/**.js', |
| 32 'test/codegen/expect/lib/convert/**.js', |
| 33 'test/codegen/expect/lib/html/**.js', |
| 32 'test/codegen/expect/lib/typed_data/**.js', | 34 'test/codegen/expect/lib/typed_data/**.js', |
| 33 'test/codegen/expect/lib/html/**.js', | |
| 34 'test/browser/*.js', | 35 'test/browser/*.js', |
| 35 'test-main.js', | 36 'test-main.js', |
| 36 ], | 37 ], |
| 37 | 38 |
| 38 // list of files to exclude | 39 // list of files to exclude |
| 39 exclude: [ | 40 exclude: [ |
| 40 ], | 41 ], |
| 41 | 42 |
| 42 // preprocess matching files before serving them to the browser | 43 // preprocess matching files before serving them to the browser |
| 43 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces
sor | 44 // available preprocessors: https://npmjs.org/browse/keyword/karma-preproces
sor |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 configuration.browsers = ['chrome_canary_travis']; | 98 configuration.browsers = ['chrome_canary_travis']; |
| 98 configuration.autoWatch = false; | 99 configuration.autoWatch = false; |
| 99 // Enable this for more logging on Travis. It is too much for Travis to | 100 // Enable this for more logging on Travis. It is too much for Travis to |
| 100 // automatically display, but still results in a downloadable raw log. | 101 // automatically display, but still results in a downloadable raw log. |
| 101 // configuration.logLevel = config.LOG_DEBUG; | 102 // configuration.logLevel = config.LOG_DEBUG; |
| 102 configuration.client.captureConsole = true; | 103 configuration.client.captureConsole = true; |
| 103 } | 104 } |
| 104 | 105 |
| 105 config.set(configuration); | 106 config.set(configuration); |
| 106 }; | 107 }; |
| OLD | NEW |