fix: convert jest.config.js to jest.config.mjs (ES module syntax)

Agent-Logs-Url: https://github.com/christianlouis/InboxConverge/sessions/6e25705d-50db-4b0c-969c-1be4cb3f1745

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-28 23:27:56 +00:00
parent b866627937
commit 0a0836e993
3 changed files with 9 additions and 2 deletions
@@ -1,4 +1,4 @@
const nextJest = require('next/jest');
import nextJest from 'next/jest.js';
const createJestConfig = nextJest({
dir: './',
@@ -19,4 +19,4 @@ const customJestConfig = {
],
};
module.exports = createJestConfig(customJestConfig);
export default createJestConfig(customJestConfig);