Permalink
Browse files
Tests: Add jQuery 3.0.0 to version dropdown and add to travis
Also removes jQuery 1.9 from travis
- Loading branch information...
Showing
with
7 additions
and
6 deletions.
-
+4
−4
.travis.yml
-
+2
−1
js/vmouse.js
-
+1
−1
tests/lib/qunit.js
|
|
@@ -18,16 +18,16 @@ before_script: |
|
|
script: npm run-script ci
|
|
|
|
|
|
env:
|
|
|
- - JQUERIES=1.9.1
|
|
|
- CITYPE=test
|
|
|
- SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
|
|
|
- JQUERIES=1.10.2
|
|
|
CITYPE=test
|
|
|
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
|
|
|
- JQUERIES=1.11.3
|
|
|
CITYPE=test
|
|
|
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
|
|
|
- - JQUERIES=2.1.1
|
|
|
+ - JQUERIES=2.2.4
|
|
|
+ CITYPE=test
|
|
|
+ SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
|
|
|
+ - JQUERIES=3.0.0
|
|
|
CITYPE=test
|
|
|
SUITES=-navigation/sequence/sequence-dialog-hash-key-tests.html,-navigation/sequence/sequence-push-state-disabled-path1-path2-dialog-hash-key-tests.html,-navigation/sequence/sequence-path1-path2-dialog-hash-key-tests.html
|
|
|
- JQUERIES=git
|
|
|
|
|
|
@@ -45,7 +45,8 @@ var dataPropertyName = "virtualMouseBindings", |
|
|
virtualEventNames = "vmouseover vmousedown vmousemove vmouseup vclick vmouseout vmousecancel".split( " " ),
|
|
|
generalProps = ( "altKey bubbles cancelable ctrlKey currentTarget detail eventPhase " +
|
|
|
"metaKey relatedTarget shiftKey target timeStamp view which" ).split( " " ),
|
|
|
- mouseEventProps = $.event.props ? $.event.props.concat( generalProps ): generalProps,
|
|
|
+ mouseHookProps = $.event.mouseHooks ? $.event.mouseHooks.props : [],
|
|
|
+ mouseEventProps = generalProps.concat( mouseHookProps ),
|
|
|
activeDocHandlers = {},
|
|
|
resetTimerID = 0,
|
|
|
startX = 0,
|
|
|
|
|
|
@@ -23,7 +23,7 @@ QUnit.config.urlConfig.push( { |
|
|
"1.10.0", "1.10.1", "1.10.2",
|
|
|
"1.11.0", "1.11.1", "1.11.2", "1.11.3",
|
|
|
"2.0.0", "2.0.1", "2.0.2", "2.0.3",
|
|
|
- "2.1.0", "2.1.1", "2.1.2", "2.1.3",
|
|
|
+ "2.1.0", "2.1.1", "2.1.2", "2.1.3", "3.0.0",
|
|
|
"git"
|
|
|
],
|
|
|
tooltip: "Which jQuery Core version to test against"
|
|
|
|
0 comments on commit
0ce624d