Commit 59b55d07 authored by Robert Knight's avatar Robert Knight

Fix warning about file type of CoffeeScript test modules

Fix several warnings like this when running tests:

```
22 06 2020 14:01:32.661:WARN [middleware:karma]: Unable to determine
   file type from the file extension, defaulting to js.
     To silence the warning specify a valid type for
     /Users/robert/hypothesis/repos/client/src/annotator/test/sidebar-test.coffee
     in the configuration file.
       See http://karma-runner.github.io/latest/config/files.html
```
parent 1a501b20
......@@ -95,6 +95,9 @@ module.exports = function (config) {
// Disable watching because karma-browserify handles this.
watched: false,
// Configure `type` explicitly to avoid warning about .coffee files.
type: 'js',
})),
// CSS bundles, relied upon by accessibility tests (eg. for color-contrast
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment