79321964

Date: 2025-01-01 16:44:52
Score: 1.5
Natty:
Report link

The reuse-db will just skip recreating the tables on the DB, but the records you create within your tests are never actually saved, all tests are run in a transaction, and when the tests end, the transaction is rolled back.

So your table structure/models/migrations will be the same between different test runs, but data will not be kept between runs.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: LeonardoPF