Skip to content
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.

Commit

Permalink
chore(karma): Restrict the numbers of files watched for faster startup
Browse files Browse the repository at this point in the history
  • Loading branch information
jbdeboer committed Jul 30, 2014
1 parent a58265b commit d56d8c3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ module.exports = function(config) {
'test/*.dart',
'test/**/*_spec.dart',
'test/config/init_guinness.dart',
{pattern: '**/*.dart', watched: true, included: false, served: true},
{pattern: 'packages/**/*.dart', watched: true, included: false, served: true},
{pattern: 'test/**/*.dart', watched: true, included: false, served: true},
{pattern: 'bin/**/*.dart', watched: true, included: false, served: true},
{pattern: 'lib/**/*.dart', watched: true, included: false, served: true},
'packages/browser/dart.js'
],

Expand Down

0 comments on commit d56d8c3

Please sign in to comment.