hapi-error
Version:
catch errors in your hapi application and display the appropriate error message/page
20 lines (15 loc) • 460 B
JavaScript
// this mini server is for: https://github.com/dwyl/hapi-error/issues/49
var Hapi = require('@hapi/hapi');
var Hoek = require('@hapi/hoek');
var server = new Hapi.Server();
// no server.routes required as we are *trying* to test for an error!
module.exports = async () => {
try {
await server.register(require('../lib/index.js'));
Hoek.assert('no errors registering plugins');
return server;
} catch (e) {
throw e;
}
};
;