quartz/wallet/node_modules/brorand/test/api-test.js
2022-03-04 20:05:23 +08:00

9 lines
202 B
JavaScript

var brorand = require('../');
var assert = require('assert');
describe('Brorand', function() {
it('should generate random numbers', function() {
assert.equal(brorand(100).length, 100);
});
});