2015-10-27 11:09:09 -04:00
|
|
|
var browserProvidersConf = require('./browser-providers.conf.js');
|
2015-06-02 10:29:09 -04:00
|
|
|
|
2015-09-11 16:33:24 -04:00
|
|
|
var packageSources = {
|
|
|
|
// Dependencies installed with `pub install`.
|
|
|
|
'unittest': 'packages/unittest',
|
|
|
|
'guinness': 'packages/guinness',
|
|
|
|
'matcher': 'packages/matcher',
|
|
|
|
'stack_trace': 'packages/stack_trace',
|
|
|
|
'collection': 'packages/collection',
|
|
|
|
'path': 'packages/path',
|
|
|
|
'observe': 'packages/observe',
|
|
|
|
'quiver': 'packages/quiver',
|
|
|
|
'intl': 'packages/intl',
|
|
|
|
'smoke': 'packages/smoke',
|
|
|
|
'logging': 'packages/logging',
|
|
|
|
'utf': 'packages/utf',
|
|
|
|
|
|
|
|
// Local dependencies, transpiled from the source.
|
|
|
|
'angular2': 'dist/dart/angular2/lib',
|
2015-10-08 11:22:11 -04:00
|
|
|
'angular2/test/': 'dist/dart/angular2/test/',
|
2015-09-11 16:33:24 -04:00
|
|
|
'http': 'dist/dart/http/lib',
|
|
|
|
'angular2_material': 'dist/dart/angular2_material/lib',
|
|
|
|
'benchpress': 'dist/dart/benchpress/lib',
|
|
|
|
'examples': 'dist/dart/examples/lib'
|
|
|
|
};
|
|
|
|
|
|
|
|
var proxyPaths = {};
|
|
|
|
Object.keys(packageSources).map(function(packageName) {
|
|
|
|
var filePath = packageSources[packageName];
|
|
|
|
proxyPaths['/packages/'+packageName] = '/base/'+filePath;
|
|
|
|
});
|
|
|
|
|
2014-09-25 17:04:46 -04:00
|
|
|
// Karma configuration
|
|
|
|
// Generated on Thu Sep 25 2014 11:52:02 GMT-0700 (PDT)
|
|
|
|
module.exports = function(config) {
|
|
|
|
config.set({
|
|
|
|
|
2015-09-11 16:33:24 -04:00
|
|
|
frameworks: ['dart-unittest', 'dart-evalcache'],
|
2014-09-25 17:04:46 -04:00
|
|
|
|
|
|
|
files: [
|
2015-04-07 23:54:20 -04:00
|
|
|
// Init and configure guiness.
|
|
|
|
{pattern: 'test-init.dart', included: true},
|
2014-09-30 19:55:59 -04:00
|
|
|
// Unit test files needs to be included.
|
2015-05-04 18:38:08 -04:00
|
|
|
{pattern: 'dist/dart/**/*_spec.dart', included: true, watched: false},
|
2014-09-30 19:55:59 -04:00
|
|
|
|
2015-05-04 18:38:08 -04:00
|
|
|
// Karma-dart via the dart-unittest framework generates
|
|
|
|
// `__adapter_unittest.dart` that imports these files.
|
|
|
|
{pattern: 'dist/dart/**', included: false, watched: false},
|
2014-09-30 19:55:59 -04:00
|
|
|
|
|
|
|
// Dependencies, installed with `pub install`.
|
|
|
|
{pattern: 'packages/**/*.dart', included: false, watched: false},
|
|
|
|
|
|
|
|
// Init and configure guiness.
|
2015-05-19 13:27:03 -04:00
|
|
|
{pattern: 'test-main.dart', included: true},
|
|
|
|
{pattern: 'modules/**/test/**/static_assets/**', included: false, watched: false},
|
2014-09-25 17:04:46 -04:00
|
|
|
],
|
|
|
|
|
2015-05-04 18:38:08 -04:00
|
|
|
exclude: [
|
|
|
|
'dist/dart/**/packages/**',
|
2015-08-20 16:19:34 -04:00
|
|
|
'modules/angular1_router/**'
|
2015-05-04 18:38:08 -04:00
|
|
|
],
|
|
|
|
|
2014-09-25 17:04:46 -04:00
|
|
|
karmaDartImports: {
|
|
|
|
guinness: 'package:guinness/guinness_html.dart'
|
|
|
|
},
|
|
|
|
|
2014-09-30 19:55:59 -04:00
|
|
|
// Map packages to the correct urls where Karma serves them.
|
2015-09-11 16:33:24 -04:00
|
|
|
proxies: proxyPaths,
|
2014-09-25 17:04:46 -04:00
|
|
|
|
2015-10-27 11:09:09 -04:00
|
|
|
customLaunchers: browserProvidersConf.customLaunchers,
|
2014-09-29 17:20:23 -04:00
|
|
|
browsers: ['DartiumWithWebPlatform'],
|
2014-10-09 16:50:25 -04:00
|
|
|
|
2015-09-11 16:33:24 -04:00
|
|
|
port: 9877,
|
|
|
|
|
|
|
|
plugins: [
|
|
|
|
require('karma-dart'),
|
|
|
|
require('karma-chrome-launcher'),
|
|
|
|
require('karma-sauce-launcher'),
|
|
|
|
require('./karma-dart-evalcache')(packageSources)
|
|
|
|
]
|
2014-09-25 17:04:46 -04:00
|
|
|
});
|
|
|
|
};
|