(file: string, content: string)
| 41 | } |
| 42 | |
| 43 | function write(file: string, content: string): void { |
| 44 | fs.mkdirSync(path.dirname(file), { recursive: true }); |
| 45 | fs.writeFileSync(file, content); |
| 46 | } |
| 47 | |
| 48 | describe('multi-repo workspaces (#514) + .gitignore-respect default (#970, #976)', () => { |
| 49 | let ws: string; |
no outgoing calls
no test coverage detected