(index)
| 317 | return test; |
| 318 | }); |
| 319 | const next = function (index) { |
| 320 | if (index < tests.length) { |
| 321 | tests[index].save().then(fail, error => { |
| 322 | expect(error.code).toEqual(Parse.Error.INCORRECT_TYPE); |
| 323 | next(index + 1); |
| 324 | }); |
| 325 | } else { |
| 326 | done(); |
| 327 | } |
| 328 | }; |
| 329 | item |
| 330 | .save({ |
| 331 | foo: { |
no outgoing calls
no test coverage detected