Test cleanup and fixes [s-t]
This commit is contained in:
@ -1,11 +1,9 @@
|
||||
const expect = require('expect');
|
||||
const sum = require('./sum.js');
|
||||
|
||||
|
||||
test('sum is a Function', () => {
|
||||
test('sum is a Function', () => {
|
||||
expect(sum).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Returns the sum of two or more numbers/arrays.', () => {
|
||||
expect(sum(...[1, 2, 3, 4])).toBe(10)
|
||||
test('Returns the sum of two or more numbers/arrays.', () => {
|
||||
expect(sum(...[1, 2, 3, 4])).toBe(10);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user