1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 18:17:48 -05:00
denoland-deno/cli/tests/testdata
Andreu Botella d3e107768a fix(modules): Immediately resolve follow-up dyn imports to a dyn imported module (#14958)
When a dynamically imported module gets resolved, any code that comes after an
await import() to that module will continue running. However, if that is the
last code in the evaluation of another dynamically imported module, that second
module will not resolve until the next iteration of the event loop, even though
it does not depend on the event loop at all.

When the event loop is being blocked by a long-running operation, such as a
long-running timer, or by an async op that might never end, such as with workers
or BroadcastChannels, that will result in the second dynamically imported module
not being resolved for a while, or ever.

This change fixes this by running the dynamic module loading steps in a loop
until no more dynamic modules can be resolved.
2022-06-30 14:12:31 -04:00
..
034_onload feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
053_import_compression chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bench chore: fix flaky integration::bench::multifile_summary test (#14771) 2022-06-02 03:03:28 +02:00
bundle feat: subcommands type-check only local files by default (#14623) 2022-05-17 23:53:42 +02:00
cache feat: no type-check by default (#14691) 2022-06-13 23:13:16 +02:00
compat feat(test): update test summary report (#14629) 2022-06-14 20:51:49 +02:00
compile feat: subcommands type-check only local files by default (#14623) 2022-05-17 23:53:42 +02:00
coverage fix(coverage): do not report transpiled files with no lines (#14699) 2022-05-22 10:45:22 -04:00
doc chore: upgrade crates (#11894) 2021-09-02 17:38:19 +02:00
dynamic_import refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
encoding chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
eval feat: no type-check by default (#14691) 2022-06-13 23:13:16 +02:00
fetch chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fmt fix(fmt): should fail --check on parse error (#14907) 2022-06-18 12:44:43 -04:00
followup_dyn_import_resolves fix(modules): Immediately resolve follow-up dyn imports to a dyn imported module (#14958) 2022-06-30 14:12:31 -04:00
import_assertions upgrade: v8 10.4.132.5 (#14874) 2022-06-15 12:30:19 -04:00
import_maps chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info fix(cli): add config flag to deno info (#14706) 2022-06-13 20:09:04 +02:00
inspector tests: Add inspector tests for "Memory" and "Profile" tabs (#13476) 2022-01-24 16:07:08 +01:00
install feat: subcommands type-check only local files by default (#14623) 2022-05-17 23:53:42 +02:00
jsx refactor(cli): use GraphData for check and emit (#12960) 2021-12-16 21:45:41 +11:00
lint fix: upgrade to swc_ecmascript 0.143 (#14238) 2022-04-08 12:31:47 -04:00
lsp fix(check): use "moduleDetection": "force" (#14875) 2022-06-15 12:26:43 -04:00
malformed_config feat: auto-discover config file (#13313) 2022-01-17 20:10:17 -05:00
module_graph chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
recursive_imports chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
run/with_config feat: add --no-config flag (#14555) 2022-05-13 17:40:50 +02:00
subdir fix(check): use "moduleDetection": "force" (#14875) 2022-06-15 12:26:43 -04:00
task feat(task): add --cwd flag for configuring the working directory (#14823) 2022-06-08 15:30:16 -06:00
test feat(test): update test summary report (#14629) 2022-06-14 20:51:49 +02:00
tla chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tla2 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tla3 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_nested chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsc chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsc2 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
vendor feat(vendor): support using an existing import map (#14836) 2022-06-14 10:05:37 -04:00
webcrypto fix(ext/crypto): decode id-RSASSA-PSS with default params (#12147) 2021-10-01 11:14:16 +02:00
webstorage feat(ext/webstorage): use implied origin when --location not set (#12548) 2021-10-27 11:10:27 +11:00
workers feat(test): update test summary report (#14629) 2022-06-14 20:51:49 +02:00
001_hello.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
001_hello.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
002_hello.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
002_hello.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
003_relative_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
003_relative_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
004_set_timeout.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
004_set_timeout.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
005_more_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
005_more_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
006_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
006_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
012_async.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
012_async.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
013_dynamic_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
013_dynamic_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
014_duplicate_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
014_duplicate_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
015_duplicate_parallel_import.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
015_duplicate_parallel_import.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
016_double_await.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
016_double_await.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
017_import_redirect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
017_import_redirect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
017_import_redirect_info.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
018_async_catch.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
018_async_catch.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
019_media_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
019_media_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
020_json_modules.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
020_json_modules.ts.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
021_mjs_modules.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
021_mjs_modules.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
022_info_flag_script.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
023_no_ext chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
023_no_ext.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
024_import_no_ext_with_headers.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
024_import_no_ext_with_headers.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_hrtime.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_hrtime.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_reload_js_type_error.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
025_reload_js_type_error.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
026_redirect_javascript.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
026_redirect_javascript.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
027_redirect_typescript.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
027_redirect_typescript.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
028_args.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
028_args.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
029_eval.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
030_eval_ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
031_info_ts_error.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
031_info_ts_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
033_import_map.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
033_import_map_remote.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
034_onload.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
035_cached_only_flag.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
036_import_map_fetch.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
037_fetch_multiple.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
038_checkjs.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
038_checkjs.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
041_dyn_import_eval.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
041_info_flag.out fix(info): print deno info paths with unescaped backslashes on windows (#13847) 2022-03-10 19:57:57 -05:00
041_info_flag_location.out fix(info): print deno info paths with unescaped backslashes on windows (#13847) 2022-03-10 19:57:57 -05:00
042_dyn_import_evalcontext.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
042_dyn_import_evalcontext.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
044_bad_resource.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
044_bad_resource.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_mod.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_output.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
045_programmatic_proxy_client.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
045_proxy_client.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
045_proxy_test.ts refactor: use spawn API across codebase (#14414) 2022-05-18 22:00:11 +02:00
045_proxy_test.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
046_jsx_test.tsx fix(check): use "moduleDetection": "force" (#14875) 2022-06-15 12:26:43 -04:00
046_jsx_test.tsx.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
047_jsx_test.jsx chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
047_jsx_test.jsx.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
048_media_types_jsx.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
048_media_types_jsx.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
049_info_flag_script_jsx.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
052_no_remote_flag.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
053_import_compression.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
054_info_local_imports.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
055_info_file_json.out refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
056_make_temp_file_write_perm.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
056_make_temp_file_write_perm.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
058_tasks_microtasks_close.ts feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
058_tasks_microtasks_close.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
059_fs_relative_path_perm.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
059_fs_relative_path_perm.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
060_deno_doc_displays_all_overloads_in_details_view.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
060_deno_doc_displays_all_overloads_in_details_view.ts.out chore: upgrade crates (#11894) 2021-09-02 17:38:19 +02:00
061_permissions_request.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
062_permissions_request_global.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
063_permissions_revoke.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
063_permissions_revoke.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
064_permissions_revoke_global.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
064_permissions_revoke_global.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
065_import_map_info.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
066_prompt.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
070_location.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
070_location.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
071_location_unset.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
071_location_unset.ts.out fix(ext/web): set location undefined when --location is not specified (#13046) 2021-12-14 00:35:59 +09:00
072_location_relative_fetch.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
072_location_relative_fetch.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
075_import_local_query_hash.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
075_import_local_query_hash.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
076_info_json_deps_order.out refactor: integrate deno_graph breaking changes (#13495) 2022-02-01 09:33:57 +11:00
076_info_json_deps_order.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
077_fetch_empty.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
077_fetch_empty.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
078_unload_on_exit.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
078_unload_on_exit.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
079_location_authentication.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
079_location_authentication.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
081_location_relative_fetch_redirect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
081_location_relative_fetch_redirect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
082_prepare_stack_trace_throw.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
082_prepare_stack_trace_throw.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
083_legacy_external_source_map.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
084_worker_custom_inspect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
084_worker_custom_inspect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
084_worker_custom_inspect_worker.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
085_dynamic_import_async_error.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
085_dynamic_import_async_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
086_dynamic_import_already_rejected.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
086_dynamic_import_already_rejected.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
087_hello.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
087_no_check_imports_not_used_as_values.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
087_no_check_imports_not_used_as_values.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
088_dynamic_import_already_evaluating.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
088_dynamic_import_already_evaluating.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
088_dynamic_import_target.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
089_run_allow_list.ts refactor: use spawn API across codebase (#14414) 2022-05-18 22:00:11 +02:00
089_run_allow_list.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
090_run_permissions_request.ts fix: permission prompt stuffing (#11931) 2021-09-09 08:38:47 -04:00
091_use_define_for_class_fields.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
091_use_define_for_class_fields.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
092_import_map_unmapped_bare_specifier.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
092_import_map_unmapped_bare_specifier.ts.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
095_cache_with_bare_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
095_cache_with_bare_import.ts.out chore: updates to support deno_graph API changes (#13080) 2021-12-15 07:39:20 +11:00
aggregate_error.out feat: Better formatting for AggregateError (#14285) 2022-04-16 16:12:26 +02:00
aggregate_error.ts feat: Better formatting for AggregateError (#14285) 2022-04-16 16:12:26 +02:00
async_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
async_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted.md chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted.mjs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted_fixed.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted_fixed.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
badly_formatted_fixed.md chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
blob_gc_finalization.js fix(cli): fix slow test, unbreak ci (#12897) 2021-11-25 14:25:22 +01:00
blob_gc_finalization.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle.test.out fix: upgrade swc fixing many bundling and --no-check bugs (#13025) 2021-12-08 19:12:14 -05:00
bundle_dynamic_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle_ignore_directives.test.out feat(cli): add ignore directives to bundled code (#13309) 2022-01-12 13:05:06 +01:00
bundle_im.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle_im.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
bundle_jsx.out fix: upgrade swc_ecmascript to 0.103 (#13284) 2022-01-04 17:02:56 -05:00
byte_order_mark.out fix: parse error when transpiling code with BOM (#11688) 2021-08-16 09:28:29 +02:00
byte_order_mark.ts fix: parse error when transpiling code with BOM (#11688) 2021-08-16 09:28:29 +02:00
cache_extensionless.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cache_random_extension.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_info.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_info.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_ts_fetch.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_ts_fetch.ts.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
cafile_ts_fetch_unsafe_ssl.ts.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
cafile_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cafile_url_imports_unsafe_ssl.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cat.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
check_all.out feat: Add "deno check" subcommand for type checking (#14072) 2022-04-11 01:12:51 +02:00
check_all.ts feat: Add "deno check" subcommand for type checking (#14072) 2022-04-11 01:12:51 +02:00
checkjs.tsconfig.json chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
circular1.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
circular1.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
circular2.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cjs_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
cjs_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
classic_workers_event_loop.js fix(runtime): event loop panics in classic workers (#11756) 2021-08-18 15:19:22 +02:00
classic_workers_event_loop.js.out fix(runtime): event loop panics in classic workers (#11756) 2021-08-18 15:19:22 +02:00
colors_without_globalThis.js fix(ext/console): don't depend on globalThis present (#13387) 2022-01-17 23:23:49 +01:00
commonjs.cjs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
complex_error.ts feat: Better formatting for AggregateError (#14285) 2022-04-16 16:12:26 +02:00
complex_error.ts.out feat: Better formatting for AggregateError (#14285) 2022-04-16 16:12:26 +02:00
complex_permissions_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
Component.tsx chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config.ts.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
config.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
config_types_remote.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
custom_inspect_url.js fix(url): properly indent when inspecting URLs (#14867) 2022-06-15 09:52:28 -04:00
custom_inspect_url.js.out fix(url): properly indent when inspecting URLs (#14867) 2022-06-15 09:52:28 -04:00
declaration_header_file_with_no_exports.ts fix(check): ignore TS2306 (#14940) 2022-06-23 12:18:32 -04:00
declaration_header_file_with_no_exports_js.d.ts fix(check): ignore TS2306 (#14940) 2022-06-23 12:18:32 -04:00
declaration_header_file_with_no_exports_js.js fix(check): ignore TS2306 (#14940) 2022-06-23 12:18:32 -04:00
delayed_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
delete_window.js fix(runtime): don't crash when window is deleted (#13392) 2022-01-18 00:13:14 +01:00
deno_doc.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_doc.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_doc_builtin.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_dom_0.1.3-alpha2.wasm chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_exit_tampering.ts fix: prevent Deno.exit to fail when dispatchEvent tampered (#14665) 2022-05-20 11:57:05 +09:00
deno_land_unsafe_ssl.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
deno_land_unsafe_ssl.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
DenoWinRunner.cs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
DenoWinRunner.ps1 chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
disallow_http_from_https.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
disallow_http_from_https.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
disallow_http_from_https_js.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
disallow_http_from_https_ts.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
dom_exception_formatting.ts fix(ext/web): Format terminal DOMExceptions properly (#11834) 2021-09-06 22:59:20 +02:00
dom_exception_formatting.ts.out fix(ext/web): Preserve stack traces for DOMExceptions (#11959) 2021-09-08 23:14:26 +02:00
dynamic_import_conditional.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
dynamic_import_conditional.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
echo.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
echo_server.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
empty.out feat(runtime): add op_set_exit_code (#12911) 2021-11-28 00:45:38 +01:00
error_001.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_001.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_002.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_002.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_003_typescript.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_003_typescript.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_004_missing_module.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_004_missing_module.ts.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
error_005_missing_dynamic_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_005_missing_dynamic_import.ts.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
error_006_import_ext_failure.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_006_import_ext_failure.ts.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
error_007_any.ts fix: Format non-error exceptions (#14604) 2022-06-06 20:26:57 +02:00
error_007_any.ts.out fix: Format non-error exceptions (#14604) 2022-06-06 20:26:57 +02:00
error_008_checkjs.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_008_checkjs.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_extensions_error.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_extensions_error.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_missing_js_module.disabled chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_missing_js_module.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_009_missing_js_module.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_010_nonexistent_arg.disabled chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_010_nonexistent_arg.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_011_bad_module_specifier.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_011_bad_module_specifier.ts.out chore: updates to support deno_graph API changes (#13080) 2021-12-15 07:39:20 +11:00
error_012_bad_dynamic_import_specifier.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_012_bad_dynamic_import_specifier.ts.out chore: updates to support deno_graph API changes (#13080) 2021-12-15 07:39:20 +11:00
error_013_missing_script.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
error_014_catch_dynamic_import_error.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_014_catch_dynamic_import_error.js.out chore: updates to support deno_graph API changes (#13080) 2021-12-15 07:39:20 +11:00
error_015_dynamic_import_permissions.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_015_dynamic_import_permissions.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
error_016_dynamic_import_permissions2.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_016_dynamic_import_permissions2.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
error_017_hide_long_source_ts.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_017_hide_long_source_ts.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_018_hide_long_source_js.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_018_hide_long_source_js.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_019_stack_function.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
error_019_stack_function.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_020_stack_constructor.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
error_020_stack_constructor.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_021_stack_method.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
error_021_stack_method.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_022_stack_custom_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_022_stack_custom_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_023_stack_async.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
error_023_stack_async.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_024_stack_promise_all.ts feat(cli): enable useUnknownInCatchVariables by default (#12547) 2021-10-28 08:43:40 +11:00
error_024_stack_promise_all.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_025_tab_indent chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_025_tab_indent.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_026_remote_import_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_026_remote_import_error.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_027_bundle_with_bare_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_027_bundle_with_bare_import.ts.out refactor(cli): use GraphData for check and emit (#12960) 2021-12-16 21:45:41 +11:00
error_cause.ts feat(cli): update to TypeScript 4.6.2 (#13474) 2022-03-02 07:44:43 +11:00
error_cause.ts.out fix: Format non-error exceptions (#14604) 2022-06-06 20:26:57 +02:00
error_cause_recursive.ts feat: output cause on JS runtime errors (#13209) 2021-12-29 19:34:13 +01:00
error_cause_recursive.ts.out feat: Better formatting for AggregateError (#14285) 2022-04-16 16:12:26 +02:00
error_for_await.ts fix(check): use "moduleDetection": "force" (#14875) 2022-06-15 12:26:43 -04:00
error_for_await.ts.out fix(cli): don't ignore diagnostics about for await (#12116) 2021-09-17 16:54:52 +10:00
error_import_map_unable_to_load.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_local_static_import_from_remote.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_local_static_import_from_remote.js.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
error_local_static_import_from_remote.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_local_static_import_from_remote.ts.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
error_missing_module_named_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_missing_module_named_import.ts.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
error_name_non_string.js fix(core): avoid panic on non-string Error.name (#14529) 2022-05-08 23:03:00 +02:00
error_name_non_string.js.out fix(core): avoid panic on non-string Error.name (#14529) 2022-05-08 23:03:00 +02:00
error_no_check.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_no_check.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_syntax.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_syntax.js.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
error_syntax_empty_trailing_line.mjs chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_syntax_empty_trailing_line.mjs.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
error_type_definitions.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_type_definitions.ts.out refactor(cli): use GraphData for check and emit (#12960) 2021-12-16 21:45:41 +11:00
error_worker_permissions_local.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_worker_permissions_local.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_worker_permissions_remote.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
error_worker_permissions_remote.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
es_private_fields.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
es_private_fields.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
esm_imports_a.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
esm_imports_b.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
eval_context_conflicting_source.ts fix(cli/fmt_errors): don't panic on source line formatting errors (#12449) 2021-10-18 18:05:36 +02:00
eval_context_throw_dom_exception.js fix(core/bindings): use is_instance_of_error() instead of is_native_error() (#12479) 2021-10-19 18:26:45 +02:00
eval_context_throw_dom_exception.js.out fix(core/bindings): use is_instance_of_error() instead of is_native_error() (#12479) 2021-10-19 18:26:45 +02:00
eval_context_throw_with_conflicting_source.ts fix(cli/fmt_errors): don't panic on source line formatting errors (#12449) 2021-10-18 18:05:36 +02:00
eval_context_throw_with_conflicting_source.ts.out refactor(core): Move Deno.core bindings to ops (#14793) 2022-06-07 11:25:10 +02:00
event_listener_error.ts feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
event_listener_error.ts.out feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
event_listener_error_handled.ts feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
event_listener_error_handled.ts.out feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
event_listener_error_immediate_exit.ts feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
event_listener_error_immediate_exit.ts.out feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
event_listener_error_immediate_exit_worker.ts BREAKING(unstable): Enable Deno namespace in workers by default (#14581) 2022-05-17 22:27:17 +02:00
event_listener_error_immediate_exit_worker.ts.out fix(runtime/web_worker): Use biased select when getting module result (#14553) 2022-05-10 11:26:57 +02:00
exec_path.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
exit_error42.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
exit_error42.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
export_type_def.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fetch_async_error_stack.ts fix(ext/fetch): Connect async error stack with user code (#13899) 2022-03-22 18:08:33 +01:00
fetch_async_error_stack.ts.out fix(ext/fetch): Connect async error stack with user code (#13899) 2022-03-22 18:08:33 +01:00
fetch_response_finalization.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fetch_response_finalization.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
file_exists.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
finalization_registry.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
finalization_registry.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_dynamic_import_errors.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_dynamic_import_errors.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_emittable_skipped.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_emittable_skipped.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_exotic_specifiers.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_exotic_specifiers.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_import_js.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_import_js.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_js_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_tsc_file_exists.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_worker_dispatchevent.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fix_worker_dispatchevent.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
fixture.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
future_check.ts feat: Add "deno check" subcommand for type checking (#14072) 2022-04-11 01:12:51 +02:00
future_check2.out feat: Add "deno check" subcommand for type checking (#14072) 2022-04-11 01:12:51 +02:00
heapstats.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
heapstats.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
hello.txt chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
http2_request_url.ts fix(ext/http): include port number in h2 urls (#12181) 2021-09-26 20:26:16 +02:00
https_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
https_import.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
if_main.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
if_main.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ignore_require.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_error_stack.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_error_stack.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_import_relative.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_import_relative.ts.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
import_blob_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_jsx.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_blob_url_jsx.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_error_stack.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_error_stack.ts.out fix(cli/fmt_errors): Abbreviate long data URLs in stack traces (#12127) 2021-09-18 15:40:04 +02:00
import_data_url_import_relative.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_import_relative.ts.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
import_data_url_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_jsx.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_data_url_jsx.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_dynamic_data_url.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_dynamic_data_url.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_extensionless.ts fix(cli): handle extensionless imports better (#13548) 2022-01-31 20:32:49 +11:00
import_extensionless.ts.out fix(cli): handle extensionless imports better (#13548) 2022-01-31 20:32:49 +11:00
import_file_with_colon.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_file_with_colon.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_meta.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_meta.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_meta2.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
import_type.ts feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
import_type.ts.out feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
info_json.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_json_location.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_missing_module.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
info_recursive_imports_test.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_recursive_imports_test.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_type_import.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
info_type_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2_with_inline_contents.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_2_with_inline_contents.js.out refactor: Move source map lookups to core (#14274) 2022-04-15 16:08:09 +02:00
inline_js_source_map_with_contents_from_graph.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
inline_js_source_map_with_contents_from_graph.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ip_address_unsafe_ssl.ts fix(ext/tls): ability to ignore IP-address certificate errors (#14610) 2022-05-18 13:32:12 +02:00
ip_address_unsafe_ssl.ts.out fix(ext/tls): ability to ignore IP-address certificate errors (#14610) 2022-05-18 13:32:12 +02:00
issue9750.js fix: permission prompt stuffing (#11931) 2021-09-09 08:38:47 -04:00
issue13562.ts fix(cli): handle local files with query params on emit (#13568) 2022-02-03 06:48:54 +11:00
issue13562.ts.out fix(cli): handle local files with query params on emit (#13568) 2022-02-03 06:48:54 +11:00
js_import_detect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
js_import_detect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
js_root_with_ts_check.js fix(cli/emit): Check JS roots with // @ts-check (#14090) 2022-04-18 16:52:26 +02:00
js_root_with_ts_check.js.out fix(cli/emit): Check JS roots with // @ts-check (#14090) 2022-04-18 16:52:26 +02:00
jsx_import_from_ts.App.jsx chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
jsx_import_from_ts.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
jsx_import_from_ts.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
jsx_import_source.out feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
jsx_import_source_dev.out feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
jsx_import_source_error.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
jsx_import_source_import_map.out feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
jsx_import_source_import_map_dev.out feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
jsx_import_source_no_pragma.tsx feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
jsx_import_source_pragma.tsx feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
jsx_import_source_pragma_import_map.tsx feat(cli): support React 17 JSX transforms (#12631) 2021-11-09 12:26:39 +11:00
listen_tls_alpn.ts chore: upgrade to rustls 0.20 (#12488) 2021-12-07 00:48:11 +01:00
listen_tls_alpn_fail.ts chore: upgrade to rustls 0.20 (#12488) 2021-12-07 00:48:11 +01:00
localhost_unsafe_ssl.ts.out chore: upgrade to rustls 0.20 (#12488) 2021-12-07 00:48:11 +01:00
lock_check_err.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err2.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err2.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err_with_bundle.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_err_with_bundle.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
lock_check_ok.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_check_ok2.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_dynamic_imports.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_dynamic_imports.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
lock_write_fetch.ts refactor: use spawn API across codebase (#14414) 2022-05-18 22:00:11 +02:00
lock_write_fetch.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
lock_write_requires_lock.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
long_data_url_formatting.ts fix(cli/fmt_errors): Abbreviate long data URLs in stack traces (#12127) 2021-09-18 15:40:04 +02:00
long_data_url_formatting.ts.out fix(cli/fmt_errors): Abbreviate long data URLs in stack traces (#12127) 2021-09-18 15:40:04 +02:00
main_module.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
main_module.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
main_module2.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
module_detection_force.ts fix(check): use "moduleDetection": "force" (#14875) 2022-06-15 12:26:43 -04:00
module_detection_force_import.ts fix(check): use "moduleDetection": "force" (#14875) 2022-06-15 12:26:43 -04:00
mts_dmts_mjs.out feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
no_check_decorators.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_check_decorators.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_check_remote.ts feat: add --no-check=remote flag (#12766) 2021-11-30 09:23:30 +11:00
no_check_remote.ts.disabled.out feat: add --no-check=remote flag (#12766) 2021-11-30 09:23:30 +11:00
no_check_remote.ts.enabled.out feat: add --no-check=remote flag (#12766) 2021-11-30 09:23:30 +11:00
no_color.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_mem_cache.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_mem_cache.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
no_prompt.ts refactor: use spawn API across codebase (#14414) 2022-05-18 22:00:11 +02:00
no_validate_asm.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
op_exit_op_set_exit_code_in_worker.ts Deno.exit() is an alias to self.close() in worker contexts (#14826) 2022-06-13 23:53:04 +02:00
op_exit_op_set_exit_code_worker.js Deno.exit() is an alias to self.close() in worker contexts (#14826) 2022-06-13 23:53:04 +02:00
performance_stats.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
permission_test.ts refactor: use spawn API across codebase (#14414) 2022-05-18 22:00:11 +02:00
preserve_imports.tsconfig.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
private_field_presence.ts feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
private_field_presence.ts.out feat(cli): update to TypeScript 4.5 (#12410) 2021-12-10 09:12:21 +11:00
proto_exploit.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
proto_exploit.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
raw_mode.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
redirect_cache.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types_error.js refactor(cli): use GraphData for check and emit (#12960) 2021-12-16 21:45:41 +11:00
reference_types_error.js.out chore: update deno_graph and deno_doc (#13173) 2021-12-22 14:25:06 +01:00
reference_types_remote.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
reference_types_remote.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
replace_self.js fix(runtime): Declare Window.self and DedicatedWorkerGlobalScope.name with util.writable() (#12378) 2021-10-11 18:50:18 +02:00
replace_self.js.out fix(runtime): Declare Window.self and DedicatedWorkerGlobalScope.name with util.writable() (#12378) 2021-10-11 18:50:18 +02:00
report_error.ts feat(ext/web): add globalThis.reportError() (#13799) 2022-04-19 10:59:51 +02:00
report_error.ts.out feat(ext/web): add globalThis.reportError() (#13799) 2022-04-19 10:59:51 +02:00
report_error_handled.ts feat(ext/web): add globalThis.reportError() (#13799) 2022-04-19 10:59:51 +02:00
report_error_handled.ts.out feat(ext/web): add globalThis.reportError() (#13799) 2022-04-19 10:59:51 +02:00
resolve_dns.ts feat(ext/net): add CAA DNS record support in Deno.resolveDns() API (#14624) 2022-05-16 11:20:41 +02:00
resolve_dns.ts.out feat(ext/net): add CAA DNS record support in Deno.resolveDns() API (#14624) 2022-05-16 11:20:41 +02:00
resolve_dns.zone.in feat(ext/net): add CAA DNS record support in Deno.resolveDns() API (#14624) 2022-05-16 11:20:41 +02:00
response_string_perf.js perf(ext/fetch): Use the WebIDL conversion to DOMString rather than USVString for Response constructor (#12201) 2021-09-25 15:30:31 +02:00
runtime_decorators.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
runtime_decorators.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
seed_random.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
seed_random.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
set_exit_code_0.ts feat(runtime): add op_set_exit_code (#12911) 2021-11-28 00:45:38 +01:00
set_exit_code_1.ts feat(runtime): add op_set_exit_code (#12911) 2021-11-28 00:45:38 +01:00
set_exit_code_2.ts feat(runtime): add op_set_exit_code (#12911) 2021-11-28 00:45:38 +01:00
set_timeout_error.ts feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
set_timeout_error.ts.out feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
set_timeout_error_handled.ts feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
set_timeout_error_handled.ts.out feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
shebang.ts fix(cli): Don't strip shebangs from modules (#13220) 2022-01-16 16:48:32 +01:00
shebang.ts.out fix(cli): Don't strip shebangs from modules (#13220) 2022-01-16 16:48:32 +01:00
shebang2.ts fix(cli): Don't strip shebangs from modules (#13220) 2022-01-16 16:48:32 +01:00
single_compile_with_reload.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
single_compile_with_reload.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
single_compile_with_reload_dyn.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
single_compile_with_reload_worker.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
spawn_stdout_inherit.ts fix(runtime/js/spawn): Pass stdio options for spawn() and spawnSync() (#14358) 2022-04-24 17:21:22 +02:00
spawn_stdout_inherit.ts.out fix(runtime/js/spawn): Pass stdio options for spawn() and spawnSync() (#14358) 2022-04-24 17:21:22 +02:00
standalone_dynamic_imports.ts feat(cli): Replace bundling with eszip in deno compile (#13563) 2022-02-15 18:03:46 +05:30
standalone_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_error_module_with_imports_1.ts feat(cli): Replace bundling with eszip in deno compile (#13563) 2022-02-15 18:03:46 +05:30
standalone_error_module_with_imports_2.ts feat(cli): Replace bundling with eszip in deno compile (#13563) 2022-02-15 18:03:46 +05:30
standalone_follow_redirects.ts fix(compile): follow redirects when resolving (#14161) 2022-03-31 14:11:30 +05:30
standalone_follow_redirects_2.js fix(compile): follow redirects when resolving (#14161) 2022-03-31 14:11:30 +05:30
standalone_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_import_datauri.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
standalone_import_map.json fix(compile): Support import maps (#13756) 2022-02-24 18:58:00 +05:30
standalone_import_map.ts fix(compile): Support import maps (#13756) 2022-02-24 18:58:00 +05:30
standalone_runtime_flags.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
std_lint.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
stdout_write_all.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
stdout_write_all.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
swc_syntax_error.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
swc_syntax_error.ts.out refactor: integrate deno_graph into CLI (#12369) 2021-10-11 08:26:22 +11:00
symlink_to_subdir chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
test_and_bench_in_run.js fix: don't error if Deno.bench() or Deno.test() are used in run subcommand (#14946) 2022-06-30 14:12:31 -04:00
text_decoder_perf.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
text_encoder_into_perf.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
text_encoder_perf.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls_connecttls.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tls_starttls.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_circular.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_circular.out chore: Fix typo in no-pending-ops error message (#12948) 2021-12-01 15:22:11 +01:00
top_level_await_loop.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_loop.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_nested.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_order.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_order.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_unresolved.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_await_unresolved.out chore: Fix typo in no-pending-ops error message (#12948) 2021-12-01 15:22:11 +01:00
top_level_for_await.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_for_await.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
top_level_for_await.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_decorators.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_decorators.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_decorators_bundle.out refactor: upgrade to deno_ast 0.15 (#14680) 2022-05-20 16:40:55 -04:00
ts_decorators_bundle.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_import_from_js.deps.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_import_from_js.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_import_from_js.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_imports_foo.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_only_import.d.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_only_import.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
ts_type_only_import.ts.out fix(cli): short-circuit in prepare_module_load() (#12604) 2021-11-16 10:25:52 +11:00
ts_with_generic.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsconfig.decorators.json chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsx_imports.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
tsx_imports.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions_for_export.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_definitions_for_export.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_01.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_01.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_02.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_02.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_js_main.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_js_main.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_redirect.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_directives_redirect.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_headers_deno_types.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
type_headers_deno_types.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
types.out chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
unbuffered_stderr.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unbuffered_stderr.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unbuffered_stdout.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unbuffered_stdout.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unreachable.wasm feat: Show the URL of streaming WASM modules in stack traces (#12268) 2021-10-10 16:03:23 +02:00
unstable.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_disabled.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_disabled_js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_enabled.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_enabled_js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
unstable_ffi_1.js fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_1.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_2.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_2.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_3.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_3.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_4.js fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_4.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_5.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_5.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_6.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_6.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_7.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_7.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_8.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_8.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_9.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_9.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_10.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_10.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_11.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_11.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_12.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_12.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_13.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_13.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_14.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_14.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_ffi_15.js feat(ext/ffi): Callbacks (#14663) 2022-06-20 16:36:04 +05:30
unstable_ffi_15.js.out fix(ext/ffi): enforce unstable check on ops (#14115) 2022-03-25 12:29:54 +01:00
unstable_worker.ts BREAKING(unstable): Enable Deno namespace in workers by default (#14581) 2022-05-17 22:27:17 +02:00
unstable_worker.ts.out BREAKING: Remove unstable Deno.emit and Deno.formatDiagnostics APIs (#14463) 2022-05-17 13:50:31 -04:00
unsupported_dynamic_import_scheme.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_flags.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_flags.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_flags_unrecognized.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
v8_help.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_async.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_async.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_shared.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_shared.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
wasm_streaming_panic_test.js fix(fetch): Fix uncaught rejection panic with WebAssembly.instantiateStreaming (#13925) 2022-03-22 11:33:29 +01:00
wasm_streaming_panic_test.js.out chore(wasm): Don't await on the argument to handleWasmStreaming (#14000) 2022-03-29 14:44:33 +02:00
wasm_unreachable.js feat: Show the URL of streaming WASM modules in stack traces (#12268) 2021-10-10 16:03:23 +02:00
wasm_unreachable.out feat: Show the URL of streaming WASM modules in stack traces (#12268) 2021-10-10 16:03:23 +02:00
wasm_url.js feat: Show the URL of streaming WASM modules in stack traces (#12268) 2021-10-10 16:03:23 +02:00
wasm_url.out feat: Show the URL of streaming WASM modules in stack traces (#12268) 2021-10-10 16:03:23 +02:00
weakref.ts chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
weakref.ts.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
webgpu_computepass_shader.wgsl chore: re-enable wgpu_sync (#13453) 2022-01-24 23:47:05 +01:00
webgpu_hellotriangle.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
webgpu_hellotriangle_shader.wgsl chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
websocket_server_idletimeout.ts tests: deflake a bunch of net related tests (#13685) 2022-02-16 16:51:32 +01:00
websocket_server_multi_field_connection_header_test.ts fix(http/ws): support multiple options in connection header (#11675) 2021-08-13 20:52:13 +02:00
websocket_test.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
websocketstream_test.ts tests: deflake a bunch of net related tests (#13685) 2022-02-16 16:51:32 +01:00
worker_close_in_wasm_reactions.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
worker_close_in_wasm_reactions.js.out fix: Don't panic when a worker is closed in the reactions to a wasm operation. (#12270) 2021-09-30 19:52:58 +02:00
worker_close_nested.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
worker_close_nested.js.out chore(workers): Test that closing a worker closes any child workers (#12215) 2021-09-24 19:26:57 -07:00
worker_close_race.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
worker_close_race.js.out chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
worker_drop_handle_race.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
worker_drop_handle_race.js.out feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
worker_drop_handle_race_terminate.js Remove unstable Deno.sleepSync (#14719) 2022-06-13 21:28:00 +02:00
worker_drop_handle_race_terminate.js.out fix(workers): Make worker.terminate() not block the current thread (#13941) 2022-04-27 18:22:47 +02:00
worker_event_handler_test.js chore: move test files to testdata directory (#11601) 2021-08-11 10:20:47 -04:00
worker_event_handler_test.js.out feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
worker_message_before_close.js fix(check): use "moduleDetection": "force" (#14875) 2022-06-15 12:26:43 -04:00
worker_message_before_close.js.out tests: make worker test deterministic (#12361) 2021-10-07 22:53:09 +02:00
x_deno_warning_redirect.js fix(lsp): properly display x-deno-warning with redirects (#13554) 2022-02-02 13:04:26 +11:00