Skip to content

Instantly share code, notes, and snippets.

@alexeygolev
Created August 14, 2012 00:43
Show Gist options
  • Save alexeygolev/3345190 to your computer and use it in GitHub Desktop.
Save alexeygolev/3345190 to your computer and use it in GitHub Desktop.
angular - seed testacular config.js
// Sample Testacular configuration file, that contain pretty much all the available options
// It's used for running client tests on Travis (http://travis-ci.org/#!/vojtajina/testacular)
// Most of the options can be overriden by cli arguments (see testacular --help)
// base path, that will be used to resolve files and exclude
basePath = ''
// list of files / patterns to load in the browser
files = [
JASMINE,
JASMINE_ADAPTER,
'app/lib/angular/angular.js',
'app/lib/angular/angular-resource.js',
'test/lib/angular/angular-mocks.js',
'app/js/*.js',
'test/unit/*.js'
];
// list of files to exclude
exclude = [];
// use dots reporter, as travis terminal does not support escaping sequences
// possible values: 'dots' || 'progress'
reporter = 'progress';
// web server port
port = 9876;
// cli runner port
runnerPort = 9100;
// enable / disable colors in the output (reporters and logs)
colors = true;
// level of logging
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG
logLevel = LOG_INFO;
// enable / disable watching file and executing tests whenever any file changes
autoWatch = true;
// Start these browsers, currently available:
// - Chrome
// - ChromeCanary
// - Firefox
// - Opera
// - Safari
// - PhantomJS
browsers = ['Chrome'];
// Auto run tests on start (when browsers are captured) and exit
singleRun = false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment