Tests: Fix Clear cookies test (#4050)
* name uses a placeholder instead of a value so this should be nothinggateway-timeout-during-tests
parent
40f36d7eb5
commit
51eb1a7ce7
|
@ -36,7 +36,6 @@ describe("the test helper", function(){
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Make sure the cookies are cleared, and make sure that the cookie
|
// Make sure the cookies are cleared, and make sure that the cookie
|
||||||
// clearing has taken effect at this point in the code. It has been
|
// clearing has taken effect at this point in the code. It has been
|
||||||
// observed that the former can happen without the latter if there
|
// observed that the former can happen without the latter if there
|
||||||
|
@ -105,7 +104,7 @@ describe("the test helper", function(){
|
||||||
|
|
||||||
// confirm that the session was actually cleared
|
// confirm that the session was actually cleared
|
||||||
var $usernameInput = chrome$("#myusernameedit");
|
var $usernameInput = chrome$("#myusernameedit");
|
||||||
expect($usernameInput.val()).to.be('Enter your name');
|
expect($usernameInput.val()).to.be('');
|
||||||
|
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue