mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-06-15 23:43:06 +03:00
* feat: Improve skill authoring guidance * test: Guard tool description lengths * fix: Align skill template guidance * fix: Satisfy advisory limit test lint * fix: Transform LangGraph ESM in Jest
35 lines
961 B
JavaScript
35 lines
961 B
JavaScript
const esModules = [
|
|
'openid-client',
|
|
'oauth4webapi',
|
|
'jose',
|
|
'@langchain/langgraph',
|
|
'@langchain/langgraph-checkpoint',
|
|
'@langchain/langgraph-sdk',
|
|
'uuid',
|
|
].join('|');
|
|
|
|
module.exports = {
|
|
testEnvironment: 'node',
|
|
clearMocks: true,
|
|
roots: ['<rootDir>'],
|
|
coverageDirectory: 'coverage',
|
|
maxWorkers: '50%',
|
|
testTimeout: 30000, // 30 seconds timeout for all tests
|
|
setupFiles: ['./test/jestSetup.js', './test/__mocks__/logger.js'],
|
|
moduleNameMapper: {
|
|
'~/(.*)': '<rootDir>/$1',
|
|
'~/data/auth.json': '<rootDir>/__mocks__/auth.mock.json',
|
|
'^openid-client/passport$': '<rootDir>/test/__mocks__/openid-client-passport.js',
|
|
'^openid-client$': '<rootDir>/test/__mocks__/openid-client.js',
|
|
},
|
|
transform: {
|
|
'\\.[jt]sx?$': [
|
|
'babel-jest',
|
|
{
|
|
presets: [['@babel/preset-env', { targets: { node: 'current' } }]],
|
|
},
|
|
],
|
|
},
|
|
transformIgnorePatterns: [`/node_modules/(?!(${esModules})/).*/`],
|
|
};
|