add 2 tests, gcd & geometricProgression
This commit is contained in:
@ -5,7 +5,8 @@ test('Testing gcd', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof gcd === 'function', 'gcd is a Function');
|
||||
//t.deepEqual(gcd(args..), 'Expected');
|
||||
t.equal(gcd(8, 36), 4, "Calculates the greatest common divisor between two or more numbers/arrays");
|
||||
t.equal(gcd(...[12, 8, 32]), 4, "Calculates the greatest common divisor between two or more numbers/arrays"); //t.deepEqual(gcd(args..), 'Expected');
|
||||
//t.equal(gcd(args..), 'Expected');
|
||||
//t.false(gcd(args..), 'Expected');
|
||||
//t.throws(gcd(args..), 'Expected');
|
||||
|
||||
@ -5,6 +5,9 @@ test('Testing geometricProgression', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof geometricProgression === 'function', 'geometricProgression is a Function');
|
||||
t.deepEqual(geometricProgression(256), [1, 2, 4, 8, 16, 32, 64, 128, 256], "Initializes an array containing the numbers in the specified range");
|
||||
t.deepEqual(geometricProgression(256, 3), [3, 6, 12, 24, 48, 96, 192], "Initializes an array containing the numbers in the specified range");
|
||||
t.deepEqual(geometricProgression(256, 1, 4), [1, 4, 16, 64, 256], "Initializes an array containing the numbers in the specified range");
|
||||
//t.deepEqual(geometricProgression(args..), 'Expected');
|
||||
//t.equal(geometricProgression(args..), 'Expected');
|
||||
//t.false(geometricProgression(args..), 'Expected');
|
||||
|
||||
Reference in New Issue
Block a user