Newer
Older
alert / js / node_modules / brorand / test / api-test.js
@Réz István Réz István on 18 Nov 2021 202 bytes first commit
var brorand = require('../');
var assert = require('assert');

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