MCPcopy Create free account
hub / github.com/Zoo-Code-Org/Zoo-Code / isDeepSeekTargetedRun

Function isDeepSeekTargetedRun

apps/vscode-e2e/src/runTest.ts:23–30  ·  view source on GitHub ↗
(testFile?: string, testGrep?: string)

Source from the content-addressed store, hash-verified

21}
22
23function isDeepSeekTargetedRun(testFile?: string, testGrep?: string) {
24 if (testFile?.toLowerCase().includes("deepseek-v4.test")) {
25 return true
26 }
27
28 // DeepSeek grep runs may target the suite name, file stem, or individual model IDs.
29 return testGrep?.toLowerCase().includes("deepseek") ?? false
30}
31
32function isBedrockTargetedRun(testFile?: string, testGrep?: string) {
33 if (testFile?.toLowerCase().includes("bedrock.test")) {

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected