Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80581 views
1
var brorand = require('../');
2
var assert = require('assert');
3
4
describe('Brorand', function() {
5
it('should generate random numbers', function() {
6
assert.equal(brorand(100).length, 100);
7
});
8
});
9
10