Files
openclaw/vitest.commands-light-paths.mjs
2026-04-06 15:51:00 +01:00

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));
}