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({
|
|
|
|
|
|
|
|
frameworks: ['dart-unittest'],
|
|
|
|
|
|
|
|
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/**',
|
|
|
|
],
|
|
|
|
|
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.
|
|
|
|
proxies: {
|
|
|
|
// Dependencies installed with `pub install`.
|
2015-05-04 18:38:08 -04:00
|
|
|
'/packages/unittest': '/base/packages/unittest',
|
|
|
|
'/packages/guinness': '/base/packages/guinness',
|
|
|
|
'/packages/matcher': '/base/packages/matcher',
|
|
|
|
'/packages/stack_trace': '/base/packages/stack_trace',
|
|
|
|
'/packages/collection': '/base/packages/collection',
|
|
|
|
'/packages/path': '/base/packages/path',
|
2014-09-30 19:55:59 -04:00
|
|
|
|
|
|
|
// Local dependencies, transpiled from the source.
|
2015-05-04 18:38:08 -04:00
|
|
|
'/packages/angular2': '/base/dist/dart/angular2/lib',
|
|
|
|
'/packages/angular2_material': '/base/dist/dart/angular2_material/lib',
|
|
|
|
'/packages/benchpress': '/base/dist/dart/benchpress/lib',
|
|
|
|
'/packages/examples': '/base/dist/dart/examples/lib'
|
2014-09-25 17:04:46 -04:00
|
|
|
},
|
|
|
|
|
2014-09-29 17:20:23 -04:00
|
|
|
customLaunchers: {
|
|
|
|
DartiumWithWebPlatform: {
|
|
|
|
base: 'Dartium',
|
|
|
|
flags: ['--enable-experimental-web-platform-features'] }
|
|
|
|
},
|
|
|
|
browsers: ['DartiumWithWebPlatform'],
|
2014-10-09 16:50:25 -04:00
|
|
|
|
|
|
|
port: 9877
|
2014-09-25 17:04:46 -04:00
|
|
|
});
|
|
|
|
};
|