e115934061
Publish `@librechat/data-schemas` to NPM / pack (push) Failing after 8s
Publish `@librechat/client` to NPM / pack (push) Failing after 0s
GitNexus Index / index (push) Failing after 1s
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been skipped
Sync Helm Chart Tags / Sync chart tags (push) Failing after 2s
Publish `librechat-data-provider` to NPM / pack (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Failing after 0s
Sync Helm Chart Tags / Ignore non-main push (push) Has been skipped
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Failing after 1s
Publish `@librechat/client` to NPM / publish-npm (push) Has been cancelled
Publish `librechat-data-provider` to NPM / publish-npm (push) Has been cancelled
GitNexus Index / post-index (push) Has been cancelled
Publish `@librechat/data-schemas` to NPM / publish-npm (push) Has been cancelled
40 lines
1.4 KiB
JavaScript
40 lines
1.4 KiB
JavaScript
/**
|
|
* `undici` (transitive dep of `@librechat/agents` and others) references
|
|
* `globalThis.File` from `node:buffer`. Node 20+ exposes it as a global;
|
|
* Node 18 / certain WSL toolchains do not, which surfaces as a
|
|
* `ReferenceError: File is not defined` at module-load time the first
|
|
* time a test imports `@librechat/agents`. Mirror the polyfill in
|
|
* `packages/api/jest.setup.cjs` so this Jest suite boots on the same
|
|
* Node versions; production code never relies on this — only Jest does.
|
|
*/
|
|
if (typeof globalThis.File === 'undefined') {
|
|
try {
|
|
const { File } = require('node:buffer');
|
|
if (File != null) {
|
|
globalThis.File = File;
|
|
}
|
|
} catch {
|
|
// Older Node versions without `node:buffer.File`. LibreChat doesn't
|
|
// support those anyway; let the test fail loudly.
|
|
}
|
|
}
|
|
|
|
// See .env.test.example for an example of the '.env.test' file.
|
|
require('dotenv').config({ path: './test/.env.test' });
|
|
|
|
process.env.MONGO_URI = 'mongodb://127.0.0.1:27017/dummy-uri';
|
|
process.env.BAN_VIOLATIONS = 'true';
|
|
process.env.BAN_DURATION = '7200000';
|
|
process.env.BAN_INTERVAL = '20';
|
|
process.env.CI = 'true';
|
|
process.env.JWT_SECRET = 'test';
|
|
process.env.JWT_REFRESH_SECRET = 'test';
|
|
process.env.CREDS_KEY = 'test';
|
|
process.env.CREDS_IV = 'test';
|
|
process.env.ALLOW_EMAIL_LOGIN = 'true';
|
|
|
|
// Set global test timeout to 30 seconds
|
|
// This can be overridden in individual tests if needed
|
|
jest.setTimeout(30000);
|
|
process.env.OPENAI_API_KEY = 'test';
|