(filePath: string, content = '')
| 194 | |
| 195 | describe('execute', () => { |
| 196 | const createFile = (filePath: string, content = '') => { |
| 197 | const fullPath = path.join(tempRootDir, filePath); |
| 198 | fs.mkdirSync(path.dirname(fullPath), { recursive: true }); |
| 199 | fs.writeFileSync(fullPath, content); |
| 200 | }; |
| 201 | const createBinaryFile = (filePath: string, data: Uint8Array) => { |
| 202 | const fullPath = path.join(tempRootDir, filePath); |
| 203 | fs.mkdirSync(path.dirname(fullPath), { recursive: true }); |
no outgoing calls
no test coverage detected