mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
9 lines
202 B
JavaScript
Vendored
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);
|
|
});
|
|
});
|