()
| 38 | } |
| 39 | } |
| 40 | async writeFiles() { |
| 41 | if (common.isMacOS) { |
| 42 | // Do the write with a delay to ensure that the OS is ready to notify us. |
| 43 | // See https://github.com/nodejs/node/issues/52601. |
| 44 | await setTimeout(common.platformTimeout(100)); |
| 45 | } |
| 46 | |
| 47 | for (const fileName of [...this.files]) { |
| 48 | await writeFile(this.filePath(fileName), Date.now() + fileName.repeat(1e4)); |
| 49 | } |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | const kCases = [ |
no test coverage detected