mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-17 12:11:20 +00:00
13 lines
403 B
JavaScript
13 lines
403 B
JavaScript
const normalizeRepoPath = (value) => value.replaceAll("\\", "/");
|
|
|
|
export const commandsLightTestFiles = [
|
|
"src/commands/cleanup-utils.test.ts",
|
|
"src/commands/dashboard.links.test.ts",
|
|
"src/commands/doctor-browser.test.ts",
|
|
"src/commands/doctor-gateway-auth-token.test.ts",
|
|
];
|
|
|
|
export function isCommandsLightTestFile(file) {
|
|
return commandsLightTestFiles.includes(normalizeRepoPath(file));
|
|
}
|