This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 160
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 #90 from Polymer/master
7/11 master -> stable
- Loading branch information
Showing
21 changed files
with
390 additions
and
269 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 |
---|---|---|
|
@@ -2,3 +2,4 @@ build/ | |
node_modules | ||
pointerevents.min.js | ||
pointerevents.min.js.map | ||
pointerevents.dev.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
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,14 @@ | ||
[ | ||
"src/boot.js", | ||
"src/touch-action.js", | ||
"src/PointerEvent.js", | ||
"src/pointermap.js", | ||
"src/sidetable.js", | ||
"src/dispatcher.js", | ||
"src/installer.js", | ||
"src/mouse.js", | ||
"src/touch.js", | ||
"src/ms.js", | ||
"src/platform-events.js", | ||
"src/capture.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,78 +1,82 @@ | ||
// Karma configuration | ||
|
||
// base path, that will be used to resolve files and exclude | ||
basePath = ''; | ||
|
||
// list of files / patterns to load in the browser | ||
files = [ | ||
'node_modules/chai/chai.js', | ||
'node_modules/chai-spies/chai-spies.js', | ||
'src/boot.js', | ||
'src/PointerEvent.js', | ||
'src/pointermap.js', | ||
'src/sidetable.js', | ||
'src/dispatcher.js', | ||
'src/installer.js', | ||
'src/mouse.js', | ||
'src/touch.js', | ||
'src/ms.js', | ||
'src/platform-events.js', | ||
'src/capture.js', | ||
'tests/setup.js', | ||
'tests/karma-setup.js', | ||
'tests/!(setup|karma-setup).js' | ||
]; | ||
|
||
// list of files to exclude | ||
exclude = []; | ||
|
||
frameworks = ['mocha']; | ||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress', 'junit' | ||
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: 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; | ||
|
||
// Start these browsers, currently available: | ||
// - Chrome | ||
// - ChromeCanary | ||
// - Firefox | ||
// - Opera | ||
// - Safari (only Mac) | ||
// - PhantomJS | ||
// - IE (only Windows) | ||
browsers = ['ChromeCanary']; | ||
|
||
// If browser does not capture in given timeout [ms], kill it | ||
captureTimeout = 50000; | ||
|
||
// Continuous Integration mode | ||
// if true, it capture browsers, run tests and exit | ||
singleRun = true; | ||
|
||
reportSlowThan = 500; | ||
|
||
preprocessors = {}; | ||
|
||
plugins = [ | ||
'karma-mocha', | ||
'karma-chrome-launcher', | ||
'karma-firefox-launcher', | ||
'karma-script-launcher', | ||
'karma-crbot-reporter' | ||
]; | ||
module.exports = function(karma) { | ||
karma.configure({ | ||
// Karma configuration | ||
|
||
// base path, that will be used to resolve files and exclude | ||
basePath: '', | ||
|
||
// list of files / patterns to load in the browser | ||
files: [ | ||
'node_modules/chai/chai.js', | ||
'node_modules/chai-spies/chai-spies.js', | ||
'src/boot.js', | ||
'src/PointerEvent.js', | ||
'src/pointermap.js', | ||
'src/sidetable.js', | ||
'src/dispatcher.js', | ||
'src/installer.js', | ||
'src/mouse.js', | ||
'src/touch.js', | ||
'src/ms.js', | ||
'src/platform-events.js', | ||
'src/capture.js', | ||
'tests/setup.js', | ||
'tests/karma-setup.js', | ||
'tests/!(setup|karma-setup).js' | ||
], | ||
|
||
// list of files to exclude | ||
exclude: [], | ||
|
||
frameworks: ['mocha'], | ||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress', 'junit' | ||
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: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG | ||
logLevel: karma.LOG_INFO, | ||
|
||
// 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: ['ChromeCanary'], | ||
|
||
// If browser does not capture in given timeout [ms], kill it | ||
captureTimeout: 50000, | ||
|
||
// Continuous Integration mode | ||
// if true, it capture browsers, run tests and exit | ||
singleRun: true, | ||
|
||
reportSlowThan: 500, | ||
|
||
preprocessors: {}, | ||
|
||
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
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
Oops, something went wrong.