| 937 | it('resendVerificationEmail: throws on missing server configuration', async () => { |
| 938 | delete req.config; |
| 939 | const resendVerificationEmail = req => |
| 940 | (() => new PagesRouter().resendVerificationEmail(req)).bind(null); |
| 941 | expect(resendVerificationEmail(req)).toThrow(); |
| 942 | }); |
| 943 |
no test coverage detected