Passed returns ERROR with non-number paramaters

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

View File

@ -16,7 +16,7 @@ describe('sumAll', function() {
it('returns ERROR with non-number parameters', function() {
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');
});
});