| Index: third_party/pkg/angular/karma.conf.js
|
| diff --git a/third_party/pkg/angular/karma.conf.js b/third_party/pkg/angular/karma.conf.js
|
| index 7c9931d45960539543d30797826ad2cfc0200e2b..873f024bd3b52ba370a89e81bbebfd9cd05b8b62 100644
|
| --- a/third_party/pkg/angular/karma.conf.js
|
| +++ b/third_party/pkg/angular/karma.conf.js
|
| @@ -14,11 +14,11 @@ module.exports = function(config) {
|
| 'test/config/filter_tests.dart',
|
| {pattern: '**/*.dart', watched: true, included: false, served: true},
|
| 'packages/browser/dart.js',
|
| - 'packages/browser/interop.js',
|
| + 'packages/browser/interop.js'
|
| ],
|
|
|
| exclude: [
|
| - 'test/io/**',
|
| + 'test/io/**'
|
| ],
|
|
|
| autoWatch: false,
|
| @@ -30,11 +30,17 @@ module.exports = function(config) {
|
| 'karma-dart',
|
| 'karma-chrome-launcher',
|
| 'karma-script-launcher',
|
| + 'karma-phantomjs-launcher',
|
| 'karma-junit-reporter',
|
| '../../../karma-parser-generator',
|
| '../../../karma-parser-getter-setter'
|
| ],
|
|
|
| + customLaunchers: {
|
| + Dartium: { base: 'ChromeCanary', flags: ['--no-sandbox'] },
|
| + ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] }
|
| + },
|
| +
|
| preprocessors: {
|
| 'test/core/parser/generated_functions.dart': ['parser-generator'],
|
| 'test/core/parser/generated_getter_setter.dart': ['parser-getter-setter']
|
|
|