()
| 257 | } |
| 258 | |
| 259 | function readlink() { |
| 260 | const fs = require('fs'); |
| 261 | fs.writeFileSync('fs29.txt', '123', 'utf8'); |
| 262 | fs.symlinkSync('fs29.txt', 'fs30.txt'); |
| 263 | fs.readlink('fs30.txt', () => { |
| 264 | fs.unlinkSync('fs29.txt'); |
| 265 | fs.unlinkSync('fs30.txt'); |
| 266 | }); |
| 267 | } |
| 268 | // The key defined in get_fs_name_by_type function in node_file.cc and node_dir.cc |
| 269 | tests.access = wrapper(access); |
| 270 | tests.chmod = wrapper(chmod); |
no test coverage detected
searching dependent graphs…