MCPcopy
hub / github.com/parse-community/parse-server / next

Function next

spec/ParseObject.spec.js:319–328  ·  view source on GitHub ↗
(index)

Source from the content-addressed store, hash-verified

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: {

Callers 15

handleRateLimitFunction · 0.85
handleParseSessionFunction · 0.85
allowCrossDomainFunction · 0.85
allowMethodOverrideFunction · 0.85
handleParseAuthFunction · 0.85
enforceRouteAllowListFunction · 0.85
handleParseErrorsFunction · 0.85
enforceMasterKeyAccessFunction · 0.85
allowDoubleForwardSlashFunction · 0.85
makeExpressHandlerFunction · 0.85
initInfoMethod · 0.85
expressRouterMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected