This repository has been archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3456 from chrisirhc/feature/update-dependencies
chore(build): upgrade devDependencies
- Loading branch information
Showing
2 changed files
with
87 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,72 @@ | ||
// Karma configuration | ||
// Generated on Sat Mar 28 2015 11:17:34 GMT-0700 (PDT) | ||
|
||
// 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, | ||
'misc/test-lib/jquery-1.8.2.min.js', | ||
'misc/test-lib/angular.js', | ||
'misc/test-lib/angular-mocks.js', | ||
'misc/test-lib/helpers.js', | ||
'src/**/*.js', | ||
'template/**/*.js' | ||
]; | ||
|
||
// list of files to exclude | ||
exclude = [ | ||
'src/**/docs/*' | ||
]; | ||
|
||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari | ||
// - PhantomJS | ||
browsers = [ | ||
'Chrome' | ||
]; | ||
|
||
// test results reporter to use | ||
// possible values: dots || progress | ||
reporters = ['progress']; | ||
|
||
reportSlowerThan = 100; | ||
|
||
// web server port | ||
port = 9018; | ||
|
||
// 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 = false; | ||
|
||
// Continuous Integration mode | ||
// if true, it capture browsers, run tests and exit | ||
singleRun = false; | ||
module.exports = function(config) { | ||
config.set({ | ||
|
||
// base path that will be used to resolve all patterns (eg. files, exclude) | ||
basePath: '', | ||
|
||
|
||
// frameworks to use | ||
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter | ||
frameworks: ['jasmine'], | ||
|
||
|
||
// list of files / patterns to load in the browser | ||
files: [ | ||
'misc/test-lib/jquery-1.8.2.min.js', | ||
'misc/test-lib/angular.js', | ||
'misc/test-lib/angular-mocks.js', | ||
'misc/test-lib/helpers.js', | ||
'src/**/*.js', | ||
'template/**/*.js' | ||
], | ||
|
||
|
||
// list of files to exclude | ||
exclude: [ | ||
'src/**/docs/*' | ||
], | ||
|
||
|
||
// preprocess matching files before serving them to the browser | ||
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor | ||
preprocessors: { | ||
}, | ||
|
||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress' | ||
// available reporters: https://npmjs.org/browse/keyword/karma-reporter | ||
reporters: ['progress'], | ||
|
||
reportSlowerThan: 100, | ||
|
||
// web server port | ||
port: 9876, | ||
|
||
|
||
// enable / disable colors in the output (reporters and logs) | ||
colors: true, | ||
|
||
|
||
// level of logging | ||
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG | ||
logLevel: config.LOG_INFO, | ||
|
||
|
||
// enable / disable watching file and executing tests whenever any file changes | ||
autoWatch: false, | ||
|
||
|
||
// start these browsers | ||
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher | ||
browsers: ['Chrome'], | ||
|
||
|
||
// Continuous Integration mode | ||
// if true, Karma captures browsers, runs the tests and exits | ||
singleRun: false | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters