Passed returns ERROR with non-number paramaters
This commit is contained in:
parent
0b679ef665
commit
e27e5fdfe5
|
@ -16,7 +16,7 @@ describe('sumAll', function() {
|
||||||
it('returns ERROR with non-number parameters', function() {
|
it('returns ERROR with non-number parameters', function() {
|
||||||
expect(sumAll(10, "90")).toEqual('ERROR');
|
expect(sumAll(10, "90")).toEqual('ERROR');
|
||||||
});
|
});
|
||||||
xit('returns ERROR with non-number parameters', function() {
|
it('returns ERROR with non-number parameters', function() {
|
||||||
expect(sumAll(10, [90, 1])).toEqual('ERROR');
|
expect(sumAll(10, [90, 1])).toEqual('ERROR');
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
Reference in New Issue