diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2019-03-21 07:44:05 +0100 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2019-03-21 17:16:53 +0100 |
commit | 3e9bb4ad314955c6d33db5d2f7dc8bab1df4e85f (patch) | |
tree | 287afeb69ab6c958413fee232185ec8fffadc2b0 /config/karma.config.js | |
parent | d2c01153a882b1f3d5ad5dc3e1218741bfabceb5 (diff) | |
download | gitlab-ce-3e9bb4ad314955c6d33db5d2f7dc8bab1df4e85f.tar.gz |
Remove .raw from JavaScript fixture file names
There is nothing more to say but
"Commits that change 30 or more lines across at least three files
must describe these changes in the commit body"
Diffstat (limited to 'config/karma.config.js')
-rw-r--r-- | config/karma.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/karma.config.js b/config/karma.config.js index c30c58edc6f..7e1e89f3c10 100644 --- a/config/karma.config.js +++ b/config/karma.config.js @@ -110,7 +110,7 @@ module.exports = function(config) { frameworks: ['jasmine'], files: [ { pattern: 'spec/javascripts/test_bundle.js', watched: false }, - { pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw|.png)', included: false }, + { pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.png)', included: false }, ], preprocessors: { 'spec/javascripts/**/*.js': ['webpack', 'sourcemap'], |