Wallet Class WIP
This commit is contained in:
parent
4546c54c8b
commit
296c78cdf0
10 changed files with 8152 additions and 249 deletions
16
test/test.storage-plain.js
Normal file
16
test/test.storage-plain.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
'use strict';
|
||||
|
||||
if (!process.version) {
|
||||
var chai = chai || require('chai');
|
||||
var should = chai.should();
|
||||
var copay = copay || require('../copay');
|
||||
var Plain = copay.Storage;
|
||||
|
||||
describe('Storage model', function() {
|
||||
|
||||
it('should create an instance', function () {
|
||||
var s = new Storage();
|
||||
should.exist(s);
|
||||
});
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue