-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
define(['intern/lib/args'], function (args) { | ||
'use strict'; | ||
|
||
var siteRoot = args.siteRoot ? args.siteRoot : 'http://localhost:5000'; | ||
var siteRoot = args.siteRoot || 'http://localhost:5000'; | ||
|
||
return { | ||
// Configuration object for webcompat | ||
|
@@ -37,7 +37,7 @@ define(['intern/lib/args'], function (args) { | |
functionalSuites: [ 'tests/functional' ], | ||
|
||
// A regular expression matching URLs to files that should not be included in code coverage analysis | ||
excludeInstrumentation: /./ | ||
excludeInstrumentation: /\./ | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
miketaylr
|
||
}; | ||
|
||
}); |
This should probably be
/^.*/
, rather than a literal dot. We don't use the code coverage stuff.