fix chat simulation test to work in android

This commit is contained in:
John McLear 2013-03-05 19:01:22 +00:00
parent 2b5cb2989c
commit 38499465c3
1 changed files with 5 additions and 3 deletions

View File

@ -30,8 +30,9 @@ describe("send chat message", function(){
var usernameValue = username.text();
var time = $firstChatMessage.children(".time");
var timeValue = time.text();
var expectedStringIncludingUserNameAndTime = usernameValue + timeValue + " " + "JohnMcLear";
expect(expectedStringIncludingUserNameAndTime).to.be($firstChatMessage.text());
var discoveredValue = $firstChatMessage.text();
var chatMsgExists = (discoveredValue.indexOf("JohnMcLear") !== -1);
expect(chatMsgExists).to.be(true);
done();
});
@ -61,6 +62,7 @@ describe("send chat message", function(){
expect(containsMessage).to.be(true);
done();
});
});
});