aboutsummaryrefslogtreecommitdiffstats
path: root/test/index.js
blob: 1ff7b673a7558bd404b11e36c6d2fac621433597 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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)
    });
  });
});