From 6a6cf5911dd1efc368c0dd5aad0d57be137031c3 Mon Sep 17 00:00:00 2001 From: Lloyd Hilaiel Date: Thu, 8 Nov 2012 15:32:29 -0700 Subject: [PATCH] work around aw snap in remove-email test issue #2691 --- automation-tests/tests/remove-email.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/automation-tests/tests/remove-email.js b/automation-tests/tests/remove-email.js index 1be2c762b..7af91d768 100644 --- a/automation-tests/tests/remove-email.js +++ b/automation-tests/tests/remove-email.js @@ -138,6 +138,8 @@ runner.run(module, { "follow link, wait for redirect, secondary should be displayed": function(done, link) { browser.chain({onError: done}) .wwin() + // work around chrome crashing with "aw snap" issue #2691 (this is temporary!) + .get("about:blank") .get(link) .wtext(CSS['123done.org'].currentlyLoggedInEmail, function(err, text) { done(err || assert.equal(text, secondaryEmail));