()
| 183 | }); |
| 184 | |
| 185 | function writeFixtureProject(): void { |
| 186 | fs.mkdirSync(path.join(tmpDir, 'src'), { recursive: true }); |
| 187 | for (let i = 0; i < 8; i++) { |
| 188 | fs.writeFileSync( |
| 189 | path.join(tmpDir, 'src', `mod${i}.ts`), |
| 190 | `export function fn${i}(x: number): number { return helper${i}(x) + ${i}; }\n` + |
| 191 | `function helper${i}(x: number): number { return x * ${i}; }\n` |
| 192 | ); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | describe('indexAll WAL deferral end-to-end', () => { |
| 197 |
no test coverage detected