()
| 65 | masterKey: 'test', |
| 66 | serverURL: 'http://localhost:12668/parse', |
| 67 | async cloud() { |
| 68 | await new Promise(resolve => setTimeout(resolve, 1000)); |
| 69 | Parse.Cloud.beforeSave('Test', () => { |
| 70 | throw 'Cannot save.'; |
| 71 | }); |
| 72 | }, |
| 73 | }).start(); |
| 74 | const express = require('express'); |
| 75 | const app = express(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…