moved to npm instead of gulp
[tech-radar.git] / karma.conf.js
index 1753663..070f89e 100644 (file)
@@ -1,6 +1,27 @@
+// Karma configuration
+// Generated on Wed May 20 2015 15:45:04 GMT-0300 (BRT)
+
 module.exports = function(config) {
   config.set({
+    basePath: '.',
     frameworks: ['jasmine'],
-    browsers: ['PhantomJS']
+    files: [
+      'bower_components/chance/chance.js',
+      'bower_components/d3/d3.min.js',
+      'src/namespaces.js',
+      'src/util/**/*.js',
+      'src/models/**/*.js',
+      'src/graphing/**/*.js',
+      'test/**/*.js'
+    ],
+    exclude: [ ],
+    reporters: ['progress'],
+    port: 9876,
+    colors: true,
+    logLevel: config.LOG_INFO,
+    autoWatch: false,
+    browsers: ['PhantomJS'],
+    captureTimeout: 60000,
+    singleRun: false
   });
 };