Skip to content
Snippets Groups Projects
Commit a2eea064 authored by Ben Adida's avatar Ben Adida
Browse files

Merge pull request #1490 from mozilla/issue_1464_ie_exception_check_registration

issue 1464 ie exception check registration
parents 65c00464 1172a5bb
No related branches found
No related tags found
No related merge requests found
......@@ -47,18 +47,18 @@
controller.startCheck();
}
asyncTest("user validation with mustAuth result", function() {
asyncTest("user validation with mustAuth result - callback with email, type and known set to true", function() {
xhr.useResult("mustAuth");
createController("waitForUserValidation");
register("authenticate", function(msg, info) {
// we want the email, type and known all sent back to the caller so that
// this information does not need to be queried again.
equal(info.email, "registered@testuser.com", "correct email");
ok(info.type, "type sent with info");
ok(info.known, "email is known");
start();
});
controller.startCheck();
testVerifiedUserEvent("authenticate", "User Must Auth");
});
asyncTest("user validation with pending->complete result ~3 seconds", function() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment