Skip to content

Instantly share code, notes, and snippets.

@mafintosh
Created April 26, 2019 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mafintosh/7a78582cfdf8fc529f27b9824b40f043 to your computer and use it in GitHub Desktop.
Save mafintosh/7a78582cfdf8fc529f27b9824b40f043 to your computer and use it in GitHub Desktop.
const fastify = require('fastify')
const assert = require('assert')
const app = fastify()
app.get('/', async (req, reply) => {
assert.fail('sup')
reply.send('hi')
})
app.listen(10000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment