FLUJOS/VISUALIZACION/node_modules/brorand/test/api-test.js
2025-11-07 00:06:12 +01:00

8 lines
202 B
JavaScript
Executable file

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