LibreChat/e2e/playwright.config.local.ts
Danny Avila b993d9fb28
🛟 test: Restore Playwright Smoke E2E (#13020)
* test: restore Playwright smoke e2e

* test: harden e2e smoke setup

* test: sync e2e server bindings

* test: normalize e2e auth urls
2026-05-14 09:49:26 -04:00

29 lines
954 B
TypeScript

import { PlaywrightTestConfig } from '@playwright/test';
import mainConfig from './playwright.config';
import { getLocalE2EEnv } from './setup/env';
import path from 'path';
const rootPath = path.resolve(__dirname, '..');
const serverPath = path.resolve(rootPath, 'e2e/setup/start-server.js');
import dotenv from 'dotenv';
dotenv.config();
const e2eEnv = getLocalE2EEnv();
Object.assign(process.env, e2eEnv);
const config: PlaywrightTestConfig = {
...mainConfig,
retries: 0,
globalSetup: require.resolve('./setup/global-setup.local'),
globalTeardown: require.resolve('./setup/global-teardown.local'),
webServer: {
...mainConfig.webServer,
command: `node ${serverPath}`,
cwd: rootPath,
},
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;