From f263412660b6f04f6eb7759e5c57f88dfbd69972 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Mon, 17 Aug 2015 10:36:58 +1000 Subject: [PATCH] add test for wordlists --- test/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/index.js b/test/index.js index d16ee6d..5ad117a 100644 --- a/test/index.js +++ b/test/index.js @@ -174,4 +174,9 @@ describe('BIP39', function() { // false assert.ok(! bool) }) + + it('exposes standard wordlists', function () { + assert(BIP39.wordlists.EN) + assert.equal(BIP39.wordlists.EN.length, 2048) + }) })