Files
jlinc-server/backend/jest.config.js
2026-08-20 15:08:32 +00:00

9 lines
279 B
JavaScript

// Native ESM: tests run under Node's experimental VM modules, no Babel.
// packages/ is excluded — @jlinc/core ships its own suite.
export default {
testEnvironment: "node",
transform: {},
testPathIgnorePatterns: ["/node_modules/", "/packages/"],
clearMocks: true,
};