@@ -67,16 +67,25 @@ global.afterEach = wrapInControlFlow(global.afterEach);
67
67
* @param {!Function } matcher The matcher function to wrap.
68
68
* @param {webdriver.promise.Promise } actualPromise The promise which will
69
69
* resolve to the actual value being tested.
70
+ * @param {boolean } not Whether this is being called with 'not' active.
70
71
*/
71
- function wrapMatcher ( matcher , actualPromise ) {
72
+ function wrapMatcher ( matcher , actualPromise , not ) {
72
73
return function ( expected ) {
73
74
actualPromise . then ( function ( actual ) {
74
75
if ( expected instanceof webdriver . promise . Promise ) {
75
76
expected . then ( function ( exp ) {
76
- expect ( actual ) [ matcher ] ( exp ) ;
77
+ if ( not ) {
78
+ expect ( actual ) . not [ matcher ] ( exp )
79
+ } else {
80
+ expect ( actual ) [ matcher ] ( exp ) ;
81
+ }
77
82
} ) ;
78
83
} else {
79
- expect ( actual ) [ matcher ] ( expected ) ;
84
+ if ( not ) {
85
+ expect ( actual ) . not [ matcher ] ( expected )
86
+ } else {
87
+ expect ( actual ) [ matcher ] ( expected ) ;
88
+ }
80
89
}
81
90
} ) ;
82
91
} ;
@@ -89,12 +98,13 @@ function wrapMatcher(matcher, actualPromise) {
89
98
* resolve to the acutal value being tested.
90
99
*/
91
100
function promiseMatchers ( actualPromise ) {
92
- var promises = { } ;
101
+ var promises = { not : { } } ;
93
102
var env = jasmine . getEnv ( ) ;
94
103
var matchersClass = env . currentSpec . matchersClass || env . matchersClass ;
95
104
96
105
for ( matcher in matchersClass . prototype ) {
97
- promises [ matcher ] = wrapMatcher ( matcher , actualPromise ) ;
106
+ promises [ matcher ] = wrapMatcher ( matcher , actualPromise , false ) ;
107
+ promises . not [ matcher ] = wrapMatcher ( matcher , actualPromise , true ) ;
98
108
} ;
99
109
100
110
return promises ;
0 commit comments