Tools for learning Japanese.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 řádky
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. });