(req)
| 4385 | const user = await Parse.User.signUp('username', 'password'); |
| 4386 | const hooks = { |
| 4387 | beforeFind(req) { |
| 4388 | expect(req).toBeDefined(); |
| 4389 | expect(req.file).toBeDefined(); |
| 4390 | expect(req.triggerName).toBe('beforeFind'); |
| 4391 | expect(req.master).toBeFalse(); |
| 4392 | expect(req.log).toBeDefined(); |
| 4393 | }, |
| 4394 | afterFind(req) { |
| 4395 | expect(req).toBeDefined(); |
| 4396 | expect(req.file).toBeDefined(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…