“Attachez les tests” Réponses codées

se rallier

// First:
// yarn add fastify or npm i fastify --save

// Require the framework and instantiate it

// ESM
import Fastify from 'fastify'
const fastify = Fastify({
  logger: true
})
// CommonJs
const fastify = require('fastify')({
  logger: true
})

// Declare a route
fastify.get('/', function (request, reply) {
  reply.send({ hello: 'world' })
})

// Run the server!
fastify.listen(3000, function (err, address) {
  if (err) {
    fastify.log.error(err)
    process.exit(1)
  }
  // Server is now listening on ${address}
})
AttractivePenguin

Attachez les tests

'use strict'

const build = require('./app')

const test = async () => {
  const app = build()

  const response = await app.inject({
    method: 'GET',
    url: '/'
  })

  console.log('status code: ', response.statusCode)
  console.log('body: ', response.body)
}
test()
khudadad Rasikh

Réponses similaires à “Attachez les tests”

Questions similaires à “Attachez les tests”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code