mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
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)
|
|
});
|
|
});
|
|
});
|