Files
site/nova-components/NovaLeader/node_modules/brorand/test/api-test.js
2025-04-21 16:03:20 +02:00

9 lines
202 B
JavaScript
Vendored

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