mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 10:02:15 +00:00
Rename remaining Pi-shaped agent surfaces to OpenClaw agent runtime names, delete obsolete Pi docs and package graph checks, and add the third-party notice for incorporated code.
15 lines
489 B
JavaScript
15 lines
489 B
JavaScript
export const agentsAllTestPatterns = ["src/agents/**/*.test.ts"];
|
|
|
|
export const agentsCoreTestPatterns = ["src/agents/*.test.ts"];
|
|
|
|
export const agentsEmbeddedTestPatterns = ["src/agents/embedded-agent-runner/**/*.test.ts"];
|
|
|
|
export const agentsToolsTestPatterns = ["src/agents/tools/**/*.test.ts"];
|
|
|
|
export const agentsSupportTestPatterns = ["src/agents/*/**/*.test.ts"];
|
|
|
|
export const agentsSupportExcludePatterns = [
|
|
"src/agents/embedded-agent-runner/**",
|
|
"src/agents/tools/**",
|
|
];
|