-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(init): generate coffee config files
If the file is *.coffee, generate CoffeeScript config file.
- Loading branch information
Showing
3 changed files
with
67 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Karma configuration | ||
# Generated on %DATE% | ||
|
||
module.exports = (karma) -> | ||
karma.configure | ||
|
||
# base path, that will be used to resolve all patterns, eg. files, exclude | ||
basePath: '%BASE_PATH%' | ||
|
||
# frameworks to use | ||
frameworks: [%FRAMEWORKS%] | ||
|
||
# list of files / patterns to load in the browser | ||
files: [ | ||
%FILES% | ||
] | ||
|
||
# list of files to exclude | ||
exclude: [ | ||
%EXCLUDE% | ||
] | ||
|
||
# test results reporter to use | ||
# possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' | ||
reporters: ['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: karma.LOG_DISABLE || karma.LOG_ERROR || karma.LOG_WARN || karma.LOG_INFO || karma.LOG_DEBUG | ||
logLevel: karma.LOG_INFO | ||
|
||
# enable / disable watching file and executing tests whenever any file changes | ||
autoWatch: %AUTO_WATCH% | ||
|
||
# Start these browsers, currently available: | ||
# - Chrome | ||
# - ChromeCanary | ||
# - Firefox | ||
# - Opera | ||
# - Safari (only Mac) | ||
# - PhantomJS | ||
# - IE (only Windows) | ||
browsers: [%BROWSERS%] | ||
|
||
# If browser does not capture in given timeout [ms], kill it | ||
captureTimeout: 60000 | ||
|
||
# Continuous Integration mode | ||
# if true, it capture browsers, run tests and exit | ||
singleRun: false |
File renamed without changes.
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