Skip to content

Commit

Permalink
Fix blanket configuration: ignore erroneous files
Browse files Browse the repository at this point in the history
  • Loading branch information
alisdair committed Aug 13, 2015
1 parent 321b8d8 commit 0a65edc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = function(environment) {

ENV['contentSecurityPolicy'] = {
'default-src': "'none'",
'script-src': "'self'",
'script-src': "'self' 'unsafe-inline'",
'font-src': "'self'",
'connect-src': "'self'",
'img-src': "'self' *",
Expand Down
9 changes: 5 additions & 4 deletions tests/blanket-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ var options = {
modulePrefix: 'component-integration-tests',
filter: /^component-integration-tests\//,
antifilter: [
'component-integration-tests/components/app-version',
'component-integration-tests/initializers/export-application-global',
'component-integration-tests/instance-initializers/app-version',
'component-integration-tests/controllers/array',
'component-integration-tests/controllers/object',
'component-integration-tests/initializers/app-version',
'/tests/',
'/config/',
'/templates/',
],
loaderExclusions: [],
loaderExclusions: [
'component-integration-tests/acceptance-tests',
],
enableCoverage: true,
cliOptions: {
lcovOptions: {
Expand Down

0 comments on commit 0a65edc

Please sign in to comment.