Files

9 lines
202 B
JavaScript
Raw Permalink Normal View History

2026-03-22 03:21:45 +02:00
var brorand = require('../');
var assert = require('assert');
describe('Brorand', function() {
it('should generate random numbers', function() {
assert.equal(brorand(100).length, 100);
});
});