We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d13751 commit daddba8Copy full SHA for daddba8
1 file changed
test/node/features/fixtures/hono/scenarios/app.js
@@ -48,8 +48,7 @@ app.get('/rejection-async', (c) => {
48
}, 100)
49
})
50
51
-// This route does not work with local testing, not sure why it's running here
52
-app.get('/throw-non-error', async (c, next) => {
+app.get('/throw-non-error', async (c) => {
53
throw 1
54
55
@@ -64,12 +63,3 @@ serve({
64
63
fetch: app.fetch,
65
port: 80
66
});
67
-
68
-// Keep the process alive
69
-process.on('SIGTERM', () => {
70
- process.exit(0)
71
-})
72
73
-process.on('SIGINT', () => {
74
75
0 commit comments