9 lines
202 B
JavaScript
Raw Normal View History

2021-02-11 21:31:41 +08:00
var brorand = require('../');
var assert = require('assert');
describe('Brorand', function() {
it('should generate random numbers', function() {
assert.equal(brorand(100).length, 100);
});
});