mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 21:41:43 +00:00
7 lines
233 B
JavaScript
7 lines
233 B
JavaScript
// Test routing roots for QA channel/lab extension tests.
|
|
export const qaExtensionTestRoots = ["extensions/qa-channel", "extensions/qa-lab"];
|
|
|
|
export function isQaExtensionRoot(root) {
|
|
return qaExtensionTestRoots.includes(root);
|
|
}
|