oss-slu/image-recognition-integration-system

[FEATURE]: Add unit tests for indexedDbHelpers

Aberta

#62 aberto em 1 de set. de 2025

 (0 comentário) (0 reação) (1 responsável)TypeScript (8 forks)auto 404
enhancementgood first issuehacktoberfest

Métricas do repositório

Stars
 (4 estrelas)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

Description

Scenario

Given the indexedDbHelpers.ts utility provides CRUD functions for images in IndexedDB,
When developers write unit tests for each helper function,
Then data persistence, retrieval, and error handling should be verified with automated tests.

Acceptance Criteria

  • Test suite tests/indexedDbHelpers.test.ts created.
  • Covers all CRUD helper functions.
    • Create
    • Read
    • Update
    • Delete
  • Tests pass locally and in CI.
  • Documentation/comments in test file for future contributors.

Additional Context

Reference file: utils/indexedDbHelpers.ts

Jest testing framework documentation https://jestjs.io/docs/getting-started

IndexedDB documentation: https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API

IndexedDB is used in:

Guia do colaborador