Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 137d804

Browse files
committed
fix(jasminewd): patched matcher should understand 'not'
Closes #139.
1 parent c7bcc20 commit 137d804

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

jasminewd/index.js

+15-5
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,25 @@ global.afterEach = wrapInControlFlow(global.afterEach);
6767
* @param {!Function} matcher The matcher function to wrap.
6868
* @param {webdriver.promise.Promise} actualPromise The promise which will
6969
* resolve to the actual value being tested.
70+
* @param {boolean} not Whether this is being called with 'not' active.
7071
*/
71-
function wrapMatcher(matcher, actualPromise) {
72+
function wrapMatcher(matcher, actualPromise, not) {
7273
return function(expected) {
7374
actualPromise.then(function(actual) {
7475
if (expected instanceof webdriver.promise.Promise) {
7576
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+
}
7782
});
7883
} else {
79-
expect(actual)[matcher](expected);
84+
if (not) {
85+
expect(actual).not[matcher](expected)
86+
} else {
87+
expect(actual)[matcher](expected);
88+
}
8089
}
8190
});
8291
};
@@ -89,12 +98,13 @@ function wrapMatcher(matcher, actualPromise) {
8998
* resolve to the acutal value being tested.
9099
*/
91100
function promiseMatchers(actualPromise) {
92-
var promises = {};
101+
var promises = {not: {}};
93102
var env = jasmine.getEnv();
94103
var matchersClass = env.currentSpec.matchersClass || env.matchersClass;
95104

96105
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);
98108
};
99109

100110
return promises;

jasminewd/spec/adapterSpec.js

+14
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,20 @@ describe('webdriverJS Jasmine adapter', function() {
111111
expect(fakeDriver.getBigNumber()).toBeLotsMoreThan(33);
112112
});
113113

114+
describe('not', function() {
115+
it('should still pass normal synchronous tests', function() {
116+
expect(4).not.toEqual(5);
117+
});
118+
119+
it('should compare a promise to a primitive', function() {
120+
expect(fakeDriver.getValueA()).not.toEqual('b');
121+
});
122+
123+
it('should compare a promise to a promise', function() {
124+
expect(fakeDriver.getValueA()).not.toEqual(fakeDriver.getValueB());
125+
});
126+
});
127+
114128
it('should throw an error with a WebElement actual value', function() {
115129
var webElement = new webdriver.WebElement(fakeDriver, 'idstring');
116130

0 commit comments

Comments
 (0)