mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-30 07:08:50 +01:00
* feat(api): refresh token logic * feat(client): refresh token logic * feat(data-provider): refresh token logic * fix: SSE uses esm * chore: add default refresh token expiry to AuthService, add message about env var not set when generating a token * chore: update scripts to more compatible bun methods, ran bun install again * chore: update env.example and playwright workflow with JWT_REFRESH_SECRET * chore: update breaking changes docs * chore: add timeout to url visit * chore: add default SESSION_EXPIRY in generateToken logic, add act script for testing github actions * fix(e2e): refresh automatically in development environment to pass e2e tests
28 lines
846 B
TypeScript
28 lines
846 B
TypeScript
import { PlaywrightTestConfig } from '@playwright/test';
|
|
import mainConfig from './playwright.config';
|
|
import path from 'path';
|
|
const absolutePath = path.resolve(process.cwd(), 'api/server/index.js');
|
|
import dotenv from 'dotenv';
|
|
dotenv.config();
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
...mainConfig,
|
|
retries: 0,
|
|
globalSetup: require.resolve('./setup/global-setup.local'),
|
|
webServer: {
|
|
...mainConfig.webServer,
|
|
command: `node ${absolutePath}`,
|
|
env: {
|
|
...process.env,
|
|
NODE_ENV: 'development',
|
|
SESSION_EXPIRY: '60000',
|
|
REFRESH_TOKEN_EXPIRY: '300000',
|
|
},
|
|
},
|
|
fullyParallel: false, // if you are on Windows, keep this as `false`. On a Mac, `true` could make tests faster (maybe on some Windows too, just try)
|
|
// workers: 1,
|
|
// testMatch: /messages/,
|
|
// retries: 0,
|
|
};
|
|
|
|
export default config;
|