Packages

A web application in pursuit of meaning in life.

Retired package: Complete rewrite, scratch old versions

Current section

Files

Jump to
udia assets node_modules brorand test api-test.js
Raw

assets/node_modules/brorand/test/api-test.js

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