Skip to content

Commit

Permalink
Make Karma watch the css and js files on the public folder for autore…
Browse files Browse the repository at this point in the history
…loading in e2e tests
  • Loading branch information
Zequez committed Dec 30, 2013
1 parent 81811c6 commit 0bf9918
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/karma-e2e.conf.js
Expand Up @@ -14,7 +14,9 @@ module.exports = function(karma) {
// list of files / patterns to load in the browser
files: [
'test/e2e/**/*.js',
'test/e2e/**/*.coffee'
'test/e2e/**/*.coffee',
{pattern: '_public/**/*.css', included: false},
{pattern: '_public/**/*.js', included: false}
],

// list of files to exclude
Expand Down

0 comments on commit 0bf9918

Please sign in to comment.