Skip to content

Instantly share code, notes, and snippets.

@RobK
Created September 4, 2013 13:41
Show Gist options
  • Save RobK/6437094 to your computer and use it in GitHub Desktop.
Save RobK/6437094 to your computer and use it in GitHub Desktop.

Revisions

  1. RobK created this gist Sep 4, 2013.
    21 changes: 21 additions & 0 deletions karma.conf.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    // Contents of: config/karma.conf.js
    basePath = '../';

    files = [
    JASMINE,
    JASMINE_ADAPTER,
    'app/lib/angular/angular.js',
    'app/lib/angular/angular-*.js',
    'test/lib/angular/angular-mocks.js',
    'app/js/**/*.js',
    'test/unit/**/*.js'
    ];

    autoWatch = true;

    browsers = ['Chrome'];

    junitReporter = {
    outputFile: 'test_out/unit.xml',
    suite: 'unit'
    };