remove unused frameworks
[dygraphs.git] / auto_tests / karma.conf.js
index 6b673cd..2505677 100644 (file)
@@ -3,11 +3,7 @@ module.exports = function (config) {
         basePath: '../',
         frameworks: [
           'mocha',
-          'chai',
-          'chai-as-promised',
-          'sinon-chai',
-          'chai-things',
-          'dirty-chai'
+          'chai'
         ],
         files: [
             'dist/dygraph-combined.dev.js',
@@ -16,13 +12,16 @@ module.exports = function (config) {
         ],
         autoWatch: false,
         singleRun: true,
-        reporters: ['mocha'], // ['spec', 'coverage'],
+        reporters: ['dots', 'coverage'],  // or 'mocha', 'spec'
         preprocessors: {
             'dist/dygraph-combined.dev.js': ['coverage']
         },
         coverageReporter: {
-            type: 'html',
-            dir: 'dist/coverage'
+            dir: 'dist/coverage',
+            reporters: [
+              { type: 'html', subdir: 'report-html' },
+              { type: 'lcovonly', subdir: 'report-lcov' },
+            ]
         },
         browsers: ['PhantomJS'],
         plugins: [