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