// Test setup file import { sequelize } from '../src/models'; beforeAll(async () => { // Setup test database connection await sequelize.authenticate(); }); afterAll(async () => { // Close database connection await sequelize.close(); }); beforeEach(async () => { // Clean up test data before each test // Add cleanup logic here }); afterEach(async () => { // Clean up test data after each test // Add cleanup logic here });