()
| 193 | } |
| 194 | |
| 195 | function realpath() { |
| 196 | const fs = require('fs'); |
| 197 | fs.writeFileSync('fs18.txt', '123', 'utf8'); |
| 198 | fs.linkSync('fs18.txt', 'fs19.txt'); |
| 199 | fs.realpath.native('fs19.txt', () => { |
| 200 | fs.unlinkSync('fs18.txt'); |
| 201 | fs.unlinkSync('fs19.txt'); |
| 202 | }); |
| 203 | } |
| 204 | |
| 205 | function rename() { |
| 206 | const fs = require('fs'); |
no test coverage detected
searching dependent graphs…