diff options
-rw-r--r-- | tests/spec/tests.js | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 29e45f5..b30cbe4 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js | |||
@@ -2869,16 +2869,10 @@ it('LeftPads ethereum keys that are less than 32 bytes', function(done) { | |||
2869 | driver.findElement(By.css('.phrase')) | 2869 | driver.findElement(By.css('.phrase')) |
2870 | .sendKeys('scout sort custom elite radar rare vivid thing trophy gesture cover snake change narrow kite list nation sustain buffalo erode open balance system young'); | 2870 | .sendKeys('scout sort custom elite radar rare vivid thing trophy gesture cover snake change narrow kite list nation sustain buffalo erode open balance system young'); |
2871 | driver.sleep(generateDelay).then(function() { | 2871 | driver.sleep(generateDelay).then(function() { |
2872 | driver.findElement(By.css(".address")) | 2872 | getFirstAddress(function(address) { |
2873 | .getText() | 2873 | expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118"); |
2874 | .then(function(address) { | 2874 | done(); |
2875 | expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118"); | 2875 | }); |
2876 | done(); | ||
2877 | }); | ||
2878 | //getFirstAddress(function(address) { | ||
2879 | // expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118"); | ||
2880 | // done(); | ||
2881 | //}); | ||
2882 | }); | 2876 | }); |
2883 | }); | 2877 | }); |
2884 | 2878 | ||