Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

36 linhas
1.1 KiB

  1. import { describe, it, expect } from 'vitest'
  2. const response = await fetch('http://localhost:7777/api/explore')
  3. const data = await response.json()
  4. describe('test API explore', () => {
  5. it('should query correctly films', async () => {
  6. expect(response.status).toBe(200)
  7. expect(response.ok).toBe(true)
  8. })
  9. it('should get 20 films', async () => {
  10. expect(data.results.length).toBe(20)
  11. })
  12. it('should have correct data structure', async () => {
  13. // Vérification de la structure exacte
  14. expect(data.results[0]).toEqual(
  15. expect.objectContaining({
  16. adult: expect.any(Boolean),
  17. backdrop_path: expect.any(String),
  18. genre_ids: expect.any(Array),
  19. id: expect.any(Number),
  20. original_language: expect.any(String),
  21. original_title: expect.any(String),
  22. overview: expect.any(String),
  23. popularity: expect.any(Number),
  24. poster_path: expect.any(String),
  25. release_date: expect.any(String),
  26. title: expect.any(String),
  27. video: expect.any(Boolean),
  28. vote_average: expect.any(Number),
  29. vote_count: expect.any(Number)
  30. })
  31. )
  32. })
  33. })