You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
354 B
16 lines
354 B
'use strict';
|
|
|
|
const { setFlagsFromString } = require('v8');
|
|
const { range } = require('../lib/util');
|
|
|
|
// 984 by default.
|
|
setFlagsFromString('--stack_size=500');
|
|
|
|
test('should work', () => {
|
|
const list = range(1, 3);
|
|
expect(list).toEqual([1, 2, 3]);
|
|
});
|
|
|
|
test('should work for large ranges', () => {
|
|
expect(() => range(1, 1e6)).not.toThrow();
|
|
});
|
|
|