Wallet/test/test.storage-plain.js
Matias Alejo Garcia c5a5129e83 fix test in browser
2014-04-14 18:08:18 -03:00

17 lines
410 B
JavaScript

'use strict';
if (typeof process === 'undefined' || !process.version) {
// browser
var chai = chai || require('chai');
var should = chai.should();
var copay = copay || require('../copay');
var Plain = copay.StoragePlain;
describe('Storage/Plain model', function() {
it('should create an instance', function () {
var s = new Plain();
should.exist(s);
});
});
}