api-test.js 202 B

12345678
  1. var brorand = require('../');
  2. var assert = require('assert');
  3. describe('Brorand', function() {
  4. it('should generate random numbers', function() {
  5. assert.equal(brorand(100).length, 100);
  6. });
  7. });