mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 20:05:46 -06:00
594d6d6e4d
* perf(test): route TUI PTY tests exclusively * test: isolate TUI PTY config ownership assertion
13 lines
410 B
TypeScript
13 lines
410 B
TypeScript
export type FullSuiteVitestShard = {
|
|
config: string;
|
|
name: string;
|
|
projects: string[];
|
|
};
|
|
|
|
export const autoReplyCoreTestInclude: string[];
|
|
export const autoReplyCoreTestExclude: string[];
|
|
export const autoReplyTopLevelReplyTestInclude: string[];
|
|
export const autoReplyReplySubtreeTestInclude: string[];
|
|
export const tuiPtyTestFiles: string[];
|
|
export const fullSuiteVitestShards: FullSuiteVitestShard[];
|