“Mengukur pengujian” Kode Jawaban

alifikasi

// 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

Mengukur pengujian

'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

Jawaban yang mirip dengan “Mengukur pengujian”

Pertanyaan yang mirip dengan “Mengukur pengujian”

Lebih banyak jawaban terkait untuk “Mengukur pengujian” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya