diff options
Diffstat (limited to 'test/index.js')
-rw-r--r-- | test/index.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/index.js b/test/index.js new file mode 100644 index 000000000..1ff7b673a --- /dev/null +++ b/test/index.js @@ -0,0 +1,11 @@ +var assert = require('assert'); +var idStore = require('../app/scripts/lib/idStore') + +describe('IdentityStore', function() { + describe('#_createFirstWallet', function () { + it('should return the expected keystore', function () { + + assert.equal(1,1) + }); + }); +}); |