1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00
denoland-deno/tests
ctrl+d 38b618ce35
fix(runtime/ops): Fix watchfs remove event (#27041)
Fix related to #26906. 
Currently, if a file is removed, no event is emitted because the file
path no longer exists. As a result, [this
check](12b377247b/runtime/ops/fs_events.rs (L149))
returns false.

With this PR, an additional check is introduced to verify if the file
exists. If the file does not exist, a custom "remove" event is emitted.
This change is necessary because, based on tests conducted on macOS and
Linux (Ubuntu 24.04.1 LTS), Linux emits a "rename" event instead of a
"remove" event when a file is deleted. Introducing a dedicated "remove"
event ensures consistent and clearer behavior across platforms.
2024-11-25 21:08:52 +05:30
..
config chore: use @std prefix for internal module specifiers (#24543) 2024-07-25 10:26:54 +10:00
ffi fix(ext/ffi): return u64/i64 as bigints from nonblocking ffi calls (#26486) 2024-10-24 09:41:38 +05:30
integration fix(cli): Fix typo in doc subcommand help output (#26321) 2024-11-21 07:54:20 -08:00
napi chore: upgrade to rust 1.82 and LLVM 19 (#26615) 2024-11-01 16:13:02 +05:30
node_compat chore: update node_compat setup script (#27051) 2024-11-25 22:35:53 +09:00
registry fix(install/global): do not error if path is an npm pkg and relative file (#26975) 2024-11-21 17:00:10 +00:00
specs feat(unstable): Instrument fetch (#27057) 2024-11-25 16:38:07 +01:00
testdata docs: fix casing of Wasm (#26954) 2024-11-21 01:02:58 +00:00
unit fix(runtime/ops): Fix watchfs remove event (#27041) 2024-11-25 21:08:52 +05:30
unit_node fix(ext/node): add fs.promises.fstat and FileHandle#stat (#26719) 2024-11-25 15:02:38 +09:00
util feat: subcommand to view and update outdated dependencies (#26942) 2024-11-20 15:22:15 -08:00
wpt fix(ext/websocket): don't throw exception when sending to closed socket (#26932) 2024-11-22 00:04:47 +01:00
Cargo.toml chore: update to file_test_runner 0.7.3 (#27016) 2024-11-22 23:30:59 +00:00
lib.rs chore: move cli/tests/ -> tests/ (#22369) 2024-02-10 20:22:13 +00:00
README.md chore: continue tests/ re-org (#22396) 2024-02-12 17:13:14 -07:00

Deno Integration Tests