Passed returns ERROR with non-number paramaters

This commit is contained in:
Mohammed Nabeel 2020-07-17 10:56:24 +03:00
parent 24cf26a15f
commit 0b679ef665
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ describe('sumAll', function() {
it('returns ERROR with negative numbers', function() { it('returns ERROR with negative numbers', function() {
expect(sumAll(-10, 4)).toEqual('ERROR'); 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'); expect(sumAll(10, "90")).toEqual('ERROR');
}); });
xit('returns ERROR with non-number parameters', function() { xit('returns ERROR with non-number parameters', function() {