(muxHome: string, relPath: string)
| 32 | const FIXTURE_PROJECT_PATH = "/stable/project-id"; |
| 33 | |
| 34 | function projectMemoryPath(muxHome: string, relPath: string): string { |
| 35 | return path.join( |
| 36 | muxHome, |
| 37 | "memory", |
| 38 | "project", |
| 39 | projectMemoryDirName(FIXTURE_PROJECT_PATH), |
| 40 | relPath |
| 41 | ); |
| 42 | } |
| 43 | |
| 44 | async function createFixture(options?: { |
| 45 | memoryAccess?: MemoryScopeAccess; |
no test coverage detected