aboutsummaryrefslogtreecommitdiff
path: root/tests/spec/tests.js
diff options
context:
space:
mode:
authorIan Coleman <ian@iancoleman.io>2019-09-12 11:58:32 +1000
committerIan Coleman <ian@iancoleman.io>2019-09-12 11:58:32 +1000
commitb603572295a6205571955099cc99c14f5b631305 (patch)
tree2ebcbbd9a5b8aee1bf1ef42f528e423a6f443406 /tests/spec/tests.js
parent8817e2487ad41f430eae50e2f871372599aea3eb (diff)
downloadBIP39-b603572295a6205571955099cc99c14f5b631305.tar.gz
BIP39-b603572295a6205571955099cc99c14f5b631305.tar.zst
BIP39-b603572295a6205571955099cc99c14f5b631305.zip
Fix test failing due to timeout
Diffstat (limited to 'tests/spec/tests.js')
-rw-r--r--tests/spec/tests.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/spec/tests.js b/tests/spec/tests.js
index cba2a74..ab82e2e 100644
--- a/tests/spec/tests.js
+++ b/tests/spec/tests.js
@@ -2174,6 +2174,7 @@ it('Ignores excess whitespace in the mnemonic', function(done) {
2174 2174
2175// Github Issue 23: Part 1: Use correct derivation path when changing tabs 2175// Github Issue 23: Part 1: Use correct derivation path when changing tabs
2176// https://github.com/iancoleman/bip39/issues/23 2176// https://github.com/iancoleman/bip39/issues/23
2177// This test was failing for default timeout of 5000ms so changed it to +10s
2177it('Uses the correct derivation path when changing tabs', function(done) { 2178it('Uses the correct derivation path when changing tabs', function(done) {
2178 // 1) and 2) set the phrase 2179 // 1) and 2) set the phrase
2179 driver.findElement(By.css('.phrase')) 2180 driver.findElement(By.css('.phrase'))
@@ -2198,7 +2199,7 @@ it('Uses the correct derivation path when changing tabs', function(done) {
2198 }); 2199 });
2199 }); 2200 });
2200 }); 2201 });
2201}); 2202}, generateDelay + 10000);
2202 2203
2203// Github Issue 23 Part 2: Coin selection in derivation path 2204// Github Issue 23 Part 2: Coin selection in derivation path
2204// https://github.com/iancoleman/bip39/issues/23#issuecomment-238011920 2205// https://github.com/iancoleman/bip39/issues/23#issuecomment-238011920