Files
ihrm/node_modules/brorand/test/api-test.js
2023-05-10 15:06:57 +05:30

9 lines
210 B
JavaScript

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