This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
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.
Merge pull request #8 from Polymer/master
7/11 master -> stable
- Loading branch information
Showing
5 changed files
with
94 additions
and
95 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[ | ||
"src/PointerGestureEvent.js", | ||
"src/initialize.js", | ||
"src/sidetable.js", | ||
"src/pointermap.js", | ||
"src/dispatcher.js", | ||
"src/hold.js", | ||
"src/track.js", | ||
"src/flick.js", | ||
"src/tap.js" | ||
] |
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,96 +1,99 @@ | ||
// Karma configuration | ||
// Generated on Fri May 31 2013 11:01:14 GMT-0700 (PDT) | ||
module.exports = function(karma) { | ||
karma.configure({ | ||
// base path, that will be used to resolve files and exclude | ||
basePath: '../', | ||
|
||
|
||
// base path, that will be used to resolve files and exclude | ||
basePath = ''; | ||
// frameworks to use | ||
frameworks: ['mocha'], | ||
|
||
|
||
// frameworks to use | ||
frameworks = ['mocha']; | ||
// list of files / patterns to load in the browser | ||
files: [ | ||
'PointerGestures/node_modules/chai/chai.js', | ||
'PointerGestures/node_modules/chai-spies/chai-spies.js', | ||
'PointerEvents/src/boot.js', | ||
'PointerEvents/src/PointerEvent.js', | ||
'PointerEvents/src/pointermap.js', | ||
'PointerEvents/src/sidetable.js', | ||
'PointerEvents/src/dispatcher.js', | ||
'PointerEvents/src/installer.js', | ||
'PointerEvents/src/mouse.js', | ||
'PointerEvents/src/touch.js', | ||
'PointerEvents/src/ms.js', | ||
'PointerEvents/src/platform-events.js', | ||
'PointerEvents/src/capture.js', | ||
'PointerGestures/src/PointerGestureEvent.js', | ||
'PointerGestures/src/initialize.js', | ||
'PointerGestures/src/sidetable.js', | ||
'PointerGestures/src/pointermap.js', | ||
'PointerGestures/src/dispatcher.js', | ||
'PointerGestures/src/hold.js', | ||
'PointerGestures/src/track.js', | ||
'PointerGestures/src/flick.js', | ||
'PointerGestures/src/tap.js', | ||
'PointerGestures/tests/setup.js', | ||
'PointerGestures/tests/!(setup).js' | ||
], | ||
|
||
|
||
// list of files / patterns to load in the browser | ||
files = [ | ||
'node_modules/chai/chai.js', | ||
'node_modules/chai-spies/chai-spies.js', | ||
'../PointerEvents/src/boot.js', | ||
'../PointerEvents/src/PointerEvent.js', | ||
'../PointerEvents/src/pointermap.js', | ||
'../PointerEvents/src/sidetable.js', | ||
'../PointerEvents/src/dispatcher.js', | ||
'../PointerEvents/src/installer.js', | ||
'../PointerEvents/src/platform-events.js', | ||
'../PointerEvents/src/capture.js', | ||
'src/PointerGestureEvent.js', | ||
'src/initialize.js', | ||
'src/sidetable.js', | ||
'src/pointermap.js', | ||
'src/dispatcher.js', | ||
'src/hold.js', | ||
'src/track.js', | ||
'src/flick.js', | ||
'src/tap.js', | ||
'tests/setup.js', | ||
'tests/!(setup).js' | ||
]; | ||
// list of files to exclude | ||
exclude: [], | ||
|
||
|
||
// list of files to exclude | ||
exclude = []; | ||
// test results reporter to use | ||
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' | ||
reporters: ['progress'], | ||
|
||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage' | ||
reporters = ['progress']; | ||
// web server port | ||
port: 9876, | ||
|
||
|
||
// web server port | ||
port = 9876; | ||
// cli runner port | ||
runnerPort: 9100, | ||
|
||
|
||
// cli runner port | ||
runnerPort = 9100; | ||
// enable / disable colors in the output (reporters and logs) | ||
colors: true, | ||
|
||
|
||
// 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: karma.LOG_INFO, | ||
|
||
|
||
// 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, | ||
|
||
|
||
// enable / disable watching file and executing tests whenever any file changes | ||
autoWatch = false; | ||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari (only Mac) | ||
// - PhantomJS | ||
// - IE (only Windows) | ||
browsers: ['Chrome'], | ||
|
||
|
||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari (only Mac) | ||
// - PhantomJS | ||
// - IE (only Windows) | ||
browsers = ['Chrome']; | ||
// If browser does not capture in given timeout [ms], kill it | ||
captureTimeout: 60000, | ||
|
||
|
||
// 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: true, | ||
|
||
|
||
// Continuous Integration mode | ||
// if true, it capture browsers, run tests and exit | ||
singleRun = true; | ||
|
||
|
||
// plugins to load | ||
plugins = [ | ||
'karma-mocha', | ||
'karma-chrome-launcher', | ||
'karma-firefox-launcher', | ||
'karma-script-launcher', | ||
'karma-crbot-reporter' | ||
]; | ||
// plugins to load | ||
plugins: [ | ||
'karma-mocha', | ||
'karma-chrome-launcher', | ||
'karma-firefox-launcher', | ||
'karma-script-launcher', | ||
'karma-crbot-reporter' | ||
] | ||
}); | ||
}; |
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