distill-rag / jest.config.js
htaf's picture
added data extractor
a67789e
raw
history blame contribute delete
293 Bytes
// jest.config.js
module.exports = {
testEnvironment: "node",
verbose: true,
forceExit: true, // force process exit
detectOpenHandles: false, // explicitly disable warnings
silent: true, // suppress worker chatter
testMatch: ["**/tests/**/*.test.js"]
};