-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(transformer): Try both cases of transformProp (firefox, ie10)
- Loading branch information
Showing
6 changed files
with
115 additions
and
69 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
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
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
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
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
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,71 +1,106 @@ | ||
// Karma configuration | ||
// Generated on Fri May 24 2013 16:26:57 GMT-0400 (EDT) | ||
// Generated on Tue Jul 30 2013 07:32:11 GMT-0400 (EDT) | ||
|
||
module.exports = function(config) { | ||
config.set({ | ||
|
||
// base path, that will be used to resolve files and exclude | ||
basePath = '../'; | ||
// 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, | ||
//Use jQuery in tests for easier event mocking | ||
'test/helpers.js', | ||
'lib/jquery.js', | ||
'lib/angular.js', | ||
'lib/angular-mocks.js', | ||
'src/**/*.js' | ||
]; | ||
// frameworks to use | ||
frameworks: ['jasmine'], | ||
|
||
|
||
// list of files to exclude | ||
exclude = [ | ||
|
||
]; | ||
// list of files / patterns to load in the browser | ||
files: [ | ||
'test/helpers.js', | ||
'lib/jquery.js', | ||
'lib/angular.js', | ||
'lib/angular-mocks.js', | ||
'src/**/*.js' | ||
], | ||
|
||
customLaunchers: { | ||
'sauce_ios': { | ||
base: 'SauceLabs', | ||
platform: 'OS X 10.8', | ||
browserName: 'iphone', | ||
version: '6' | ||
}, | ||
'sauce_android': { | ||
base: 'SauceLabs', | ||
platform: 'Linux', | ||
browserName: 'android', | ||
version: '4.0' | ||
}, | ||
'sauce_chrome': { | ||
base: 'SauceLabs', | ||
platform: 'Linux', | ||
browserName: 'chrome' | ||
}, | ||
'sauce_firefox': { | ||
base: 'SauceLabs', | ||
platform: 'Linux', | ||
browserName: 'firefox' | ||
}, | ||
'sauce_ie': { | ||
base: 'SauceLabs', | ||
platform: 'Windows 8', | ||
browserName: 'internet explorer', | ||
version: '10' | ||
} | ||
}, | ||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress', 'junit' | ||
reporters = ['progress']; | ||
// list of files to exclude | ||
exclude: [ | ||
|
||
], | ||
|
||
|
||
// web server port | ||
port = 9876; | ||
// test results reporter to use | ||
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' | ||
reporters: ['progress'], | ||
|
||
|
||
// cli runner port | ||
runnerPort = 9100; | ||
// web server port | ||
port: 9876, | ||
|
||
|
||
// enable / disable colors in the output (reporters and logs) | ||
colors = true; | ||
// cli runner port | ||
runnerPort: 9100, | ||
|
||
|
||
// level of logging | ||
// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG | ||
logLevel = LOG_INFO; | ||
// enable / disable colors in the output (reporters and logs) | ||
colors: true, | ||
|
||
|
||
// enable / disable watching file and executing tests whenever any file changes | ||
autoWatch = false; | ||
// level of logging | ||
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG | ||
logLevel: config.LOG_INFO, | ||
|
||
|
||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari (only Mac) | ||
// - PhantomJS | ||
// - IE (only Windows) | ||
browsers = ['Chrome']; | ||
// enable / disable watching file and executing tests whenever any file changes | ||
autoWatch: true, | ||
|
||
|
||
// If browser does not capture in given timeout [ms], kill it | ||
captureTimeout = 60000; | ||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari (only Mac) | ||
// - PhantomJS | ||
// - IE (only Windows) | ||
browsers: ['Chrome'], | ||
|
||
|
||
// Continuous Integration mode | ||
// if true, it capture browsers, run tests and exit | ||
singleRun = false; | ||
// 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 | ||
}); | ||
}; |