mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Tests: Fix Clear cookies test (#4050)
* name uses a placeholder instead of a value so this should be nothing
This commit is contained in:
parent
40f36d7eb5
commit
51eb1a7ce7
1 changed files with 1 additions and 2 deletions
|
@ -36,7 +36,6 @@ describe("the test helper", function(){
|
|||
done();
|
||||
});
|
||||
});
|
||||
|
||||
// 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
|
||||
// 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
|
||||
var $usernameInput = chrome$("#myusernameedit");
|
||||
expect($usernameInput.val()).to.be('Enter your name');
|
||||
expect($usernameInput.val()).to.be('');
|
||||
|
||||
done();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue