mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 09:57:11 -05:00
![]() Fixes a pesky bug in the fetch implementation where if the init part is specified in `fetch` instead of the `Request` constructor, the fillHeaders function receives two references to the same object, causing it to append to the same list being iterated over. |
||
---|---|---|
.. | ||
abort_controller_test.ts | ||
blob_test.ts | ||
body_test.ts | ||
buffer_test.ts | ||
build_test.ts | ||
chmod_test.ts | ||
chown_test.ts | ||
console_test.ts | ||
copy_file_test.ts | ||
custom_event_test.ts | ||
dir_test.ts | ||
error_stack_test.ts | ||
event_target_test.ts | ||
event_test.ts | ||
fetch_test.ts | ||
file_test.ts | ||
filereader_test.ts | ||
files_test.ts | ||
format_error_test.ts | ||
fs_events_test.ts | ||
get_random_values_test.ts | ||
globals_test.ts | ||
headers_test.ts | ||
http_test.ts | ||
internals_test.ts | ||
io_test.ts | ||
link_test.ts | ||
make_temp_test.ts | ||
metrics_test.ts | ||
mkdir_test.ts | ||
net_test.ts | ||
opcall_test.ts | ||
os_test.ts | ||
path_from_url_test.ts | ||
performance_test.ts | ||
permissions_test.ts | ||
process_test.ts | ||
progressevent_test.ts | ||
read_dir_test.ts | ||
read_file_test.ts | ||
read_link_test.ts | ||
read_text_file_test.ts | ||
README.md | ||
real_path_test.ts | ||
remove_test.ts | ||
rename_test.ts | ||
request_test.ts | ||
resources_test.ts | ||
response_test.ts | ||
signal_test.ts | ||
stat_test.ts | ||
stdio_test.ts | ||
streams_deprecated.ts | ||
symlink_test.ts | ||
sync_test.ts | ||
test_util.ts | ||
testing_test.ts | ||
text_encoding_test.ts | ||
timers_test.ts | ||
tls_test.ts | ||
truncate_test.ts | ||
tty_test.ts | ||
umask_test.ts | ||
url_search_params_test.ts | ||
url_test.ts | ||
utime_test.ts | ||
version_test.ts | ||
webgpu_test.ts | ||
websocket_test.ts | ||
worker_types.ts | ||
write_file_test.ts | ||
write_text_file_test.ts |
Deno runtime tests
Files in this directory are unit tests for Deno runtime.
Testing Deno runtime code requires checking API under different runtime
permissions. To accomplish this all tests exercised are created using
unitTest()
function.
import { unitTest } from "./test_util.ts";
unitTest(function simpleTestFn(): void {
// test code here
});
unitTest(
{
ignore: Deno.build.os === "windows",
perms: { read: true, write: true },
},
function complexTestFn(): void {
// test code here
},
);
Running tests
There are three ways to run unit_test_runner.ts
:
# Run all tests.
target/debug/deno test --allow-all --unstable cli/tests/unit/
# Run a specific test module
target/debug/deno test --allow-all --unstable cli/tests/unit/files_test.ts
Http server
target/debug/test_server
is required to run when one's running unit tests.
During CI it's spawned automatically, but if you want to run tests manually make
sure that server is spawned otherwise there'll be cascade of test failures.