Tools for learning Japanese.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

16 líneas
375 B

  1. import { describe, it, expect } from 'vitest';
  2. import SERVER from '../src/server';
  3. import '../src/routes';
  4. describe('Example', () => {
  5. it('should have the expected content', async () => {
  6. const response = await SERVER
  7. .inject()
  8. .get('/')
  9. .headers({
  10. 'Accept': 'application/json',
  11. });
  12. expect(response.statusCode).toBe(200);
  13. });
  14. });