(options, callback)
| 301 | |
| 302 | // Convenience method to create a new TestObject with a callback |
| 303 | function create(options, callback) { |
| 304 | const t = new TestObject(options); |
| 305 | return t.save().then(callback); |
| 306 | } |
| 307 | |
| 308 | function createTestUser() { |
| 309 | const user = new Parse.User(); |
no outgoing calls
no test coverage detected