mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-27 12:13:30 +00:00
* test: cover detached subagent activity lifecycle * test: strengthen detached activity lifecycle gates * test: tighten detached activity assertions
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import { defineConfig } from '@playwright/test';
|
|
import mockConfig from './playwright.config.mock';
|
|
|
|
/** Browser scenarios whose behavior crosses the generation stream-store boundary. */
|
|
export default defineConfig({
|
|
...mockConfig,
|
|
/**
|
|
* Every stream event crosses a real Redis round-trip on this lane, so waits that
|
|
* sit comfortably against the in-memory store run much closer to their budget —
|
|
* pause/resume and rehydrate paths most of all, since they replay a whole job.
|
|
* The suite is serial (`workers: 1`), so this is per-operation latency rather
|
|
* than contention, and it is why this lane reports flaky runs the memory shards
|
|
* never produce. Give it a larger default assertion budget and one more retry.
|
|
*/
|
|
retries: process.env.CI ? 3 : 0,
|
|
expect: { ...mockConfig.expect, timeout: 20_000 },
|
|
testMatch: [
|
|
/completion\.spec\.ts/,
|
|
/deferred-tools-hitl\.spec\.ts/,
|
|
/model-spec-icons\.spec\.ts/,
|
|
/steering\.spec\.ts/,
|
|
/steering-escalation\.spec\.ts/,
|
|
/streaming\.spec\.ts/,
|
|
/subagent-activity\.spec\.ts/,
|
|
/thread-fold\.spec\.ts/,
|
|
/tool-approvals\.spec\.ts/,
|
|
/usage\.spec\.ts/,
|
|
],
|
|
});
|